7 lines
85 B
Rust
7 lines
85 B
Rust
fn main() {
|
|
|
|
let y: int = 42;
|
|
let x: int;
|
|
x <- y;
|
|
assert (x == 42);
|
|
} |