mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 23:33:27 +03:00
12 lines
126 B
Plaintext
12 lines
126 B
Plaintext
function main(cond: bool) -> u32 {
|
|
let mut a = 0u32;
|
|
|
|
if cond {
|
|
for i in 0..4 {
|
|
a += i;
|
|
}
|
|
}
|
|
|
|
return a
|
|
}
|