-
-
Save rust-play/b14f932777921b9b958f2b890ab41f08 to your computer and use it in GitHub Desktop.
Code shared from the Rust Playground
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fn main() { | |
let item: Option<usize> = Some(3); | |
match item { | |
Some(v) => { | |
dbg!(v); | |
} | |
None => { | |
dbg!("none"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment