mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-29 22:36:05 +03:00
5 lines
83 B
Plaintext
5 lines
83 B
Plaintext
// Variables are immutable by default.
|
|
function main() {
|
|
let a = 1u32;
|
|
a = 0;
|
|
} |