mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-28 20:54:16 +03:00
5 lines
87 B
Plaintext
5 lines
87 B
Plaintext
|
// Variables are immutable by default.
|
||
|
function main() {
|
||
|
let a = 1u32;
|
||
|
a = 0;
|
||
|
}
|