mirror of
https://github.com/AleoHQ/leo.git
synced 2025-01-08 11:08:41 +03:00
7 lines
121 B
Plaintext
7 lines
121 B
Plaintext
|
// Adding the `mut` keyword makes a variable mutable.
|
||
|
function main() -> u32 {
|
||
|
let mut a = 1u32;
|
||
|
a = 0;
|
||
|
|
||
|
return a
|
||
|
}
|