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