Much more flow control destructuring in RBE

This commit is contained in:
2023-09-27 23:16:10 -04:00
parent 460741740b
commit ca812add16
8 changed files with 161 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
fn main() {
let number = 13;
println!("Tell me about {}", number);
match number {
1 => println!("One!"),
2 | 3 | 5 | 7 | 11 => println!("This is a prime"),
13..=19 => println!("A teen"),
_ => println!("Ain't special"),
}
let boolean = true;
let binary = match boolean {
false => 0,
true => 1,
};
println!("{} -> {}", boolean, binary);
}