8 lines
88 B
Rust
8 lines
88 B
Rust
|
|
|
|
fn main() {
|
|
let a: int = 10;
|
|
log(debug, a);
|
|
assert (a * (a - 1) == 90);
|
|
}
|