6 lines
80 B
Plaintext
6 lines
80 B
Plaintext
fn main() -> i32 {
|
|
let a = 0;
|
|
let b = 0;
|
|
a = b = 42;
|
|
return a;
|
|
} |