5 lines
No EOL
69 B
Rust
5 lines
No EOL
69 B
Rust
fn main() {
|
|
let i = ~mutable 0;
|
|
*i = 1;
|
|
assert *i == 1;
|
|
} |