d6f1ba89ce
fixes #63
9 lines
114 B
Rust
9 lines
114 B
Rust
fn main() {
|
|
let x = "hello";
|
|
match x {
|
|
"foo" => {},
|
|
"bar" => {},
|
|
_ => {},
|
|
}
|
|
}
|