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