mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-28 01:01:53 +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
|
|
} |