Skip to content

Instantly share code, notes, and snippets.

@rashaabdulrazzak
Created January 7, 2022 12:18
Show Gist options
  • Save rashaabdulrazzak/613086fe7fa6abe2ea7a635540eb8c93 to your computer and use it in GitHub Desktop.
Save rashaabdulrazzak/613086fe7fa6abe2ea7a635540eb8c93 to your computer and use it in GitHub Desktop.
match example
fn main() {
// define a variable
let x = 2;
// define match expression
match x {
1 => println!("Java"),
2 => println!("Rust"),
_ => println!("Some other value"),
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment