mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-28 01:01:53 +03:00
7 lines
138 B
Plaintext
7 lines
138 B
Plaintext
// Adding the `mut` keyword makes a variable mutable.
|
|
function main() {
|
|
let mut a = 1u32;
|
|
a = 0;
|
|
|
|
console.assert(a == 0u32);
|
|
} |