mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-02 12:22:08 +03:00
8 lines
92 B
Plaintext
8 lines
92 B
Plaintext
function main() -> u32 {
|
|
let mut x = 4u32;
|
|
for i in 0..3 {
|
|
x -= 1;
|
|
}
|
|
|
|
return x
|
|
} |