mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-02 12:22:08 +03:00
6 lines
120 B
Plaintext
6 lines
120 B
Plaintext
// Adding the `mut` keyword makes a function variable mutable.
|
|
function main(mut a: u32) -> u32 {
|
|
a = 0;
|
|
|
|
return a
|
|
} |