mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-30 14:50:06 +08:00
12 lines
145 B
Rust
12 lines
145 B
Rust
|
fn foo(x: i32) -> i32 {
|
||
|
match x {
|
||
|
0 => 1,
|
||
|
1 => {
|
||
|
2
|
||
|
},
|
||
|
2 | 3 => {
|
||
|
4
|
||
|
}
|
||
|
}
|
||
|
}
|