8 lines
115 B
Text
8 lines
115 B
Text
fn main() -> i32 {
|
|
let foo = 10;
|
|
match foo * 2 {
|
|
10 => 4,
|
|
30 => 5,
|
|
_ => 6,
|
|
}
|
|
}
|