5 lines
81 B
Rust
5 lines
81 B
Rust
|
fn main() -> () {
|
||
|
let int a = 10;
|
||
|
log a;
|
||
|
check (a * (a - 1) == 90);
|
||
|
}
|