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