8 lines
133 B
Rust
8 lines
133 B
Rust
|
fn main() {
|
||
|
let mut x = 0;
|
||
|
for 4096.times {
|
||
|
x += 1;
|
||
|
}
|
||
|
assert x == 4096;
|
||
|
io::println(fmt!("x = %u", x));
|
||
|
}
|