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