9 lines
98 B
Rust
9 lines
98 B
Rust
fn main() {
|
|
println!();
|
|
println!("");
|
|
|
|
match "a" {
|
|
_ => println!(""),
|
|
}
|
|
}
|