mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-30 09:42:43 +03:00
7 lines
136 B
Plaintext
7 lines
136 B
Plaintext
// Adding the `mut` keyword makes an array variable mutable.
|
|
function main() -> u32 {
|
|
let mut a = [1u32];
|
|
a[0] = 0;
|
|
|
|
return a[0]
|
|
} |