mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 23:33:27 +03:00
7 lines
147 B
Plaintext
7 lines
147 B
Plaintext
// Adding the `mut` keyword makes an array variable mutable.
|
|
function main() {
|
|
let mut a = [1u32];
|
|
a[0] = 0;
|
|
|
|
assert_eq!(a[0], 0u32);
|
|
} |