rust/src/test/run-pass/arith-0.rs

5 lines
82 B
Rust

fn main() -> () {
let int a = 10;
log a;
assert (a * (a - 1) == 90);
}