mirror of
https://github.com/AleoHQ/leo.git
synced 2025-01-02 14:58:05 +03:00
5 lines
91 B
Plaintext
5 lines
91 B
Plaintext
// Arrays are immutable by default.
|
|
function main() {
|
|
const a = [1u32];
|
|
a[0] = 0;
|
|
} |