7 lines
67 B
Rust
7 lines
67 B
Rust
fn main() {
|
|
auto x = @mutable 5;
|
|
*x = 1000;
|
|
log *x;
|
|
}
|
|
|