6 lines
152 B
Rust
6 lines
152 B
Rust
fn main() {
|
|
let x = true;
|
|
if x { let mut i = 10; while i > 0 { i -= 1; } }
|
|
alt x { true { #debug("right"); } false { #debug("wrong"); } }
|
|
}
|