9 lines
111 B
Rust
9 lines
111 B
Rust
fn main() {
|
|
let x = "hello";
|
|
match x {
|
|
"foo" => {}
|
|
"bar" => {}
|
|
_ => {}
|
|
}
|
|
}
|