Skip to content

Instantly share code, notes, and snippets.

@rashaabdulrazzak
Created January 7, 2022 12:14
Show Gist options
  • Save rashaabdulrazzak/2193b2ef01b09a8d85708fd20952c7ed to your computer and use it in GitHub Desktop.
Save rashaabdulrazzak/2193b2ef01b09a8d85708fd20952c7ed to your computer and use it in GitHub Desktop.
if let example
fn main() {
// define a scrutinee expression
let course = ("Rust", "course");
// pattern matches with the scrutinee expression
if let ("Ja", "course") = course {
println!("Values matchecd");
} else {
// do not execute this block
println!("Value unmatched");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment