mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-27 12:17:35 +03:00
8 lines
209 B
Plaintext
8 lines
209 B
Plaintext
// Adding the `mut` keyword makes an array variable mutable.
|
|
function main() {
|
|
let a = [(1u32, 2u32)];
|
|
a[0u32].1 = 3u32;
|
|
|
|
console.assert(a[0u32].0 == 1u32);
|
|
console.assert(a[0u32].1 == 3u32);
|
|
} |