leo/tests/compiler/function/iteration_repeated.leo
2021-05-05 18:29:44 +03:00

22 lines
279 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: input/dummy.in
*/
function iteration() -> u32 {
let a = 0u32;
for i in 0..10 {
a += 1;
}
return a;
}
function main() -> bool {
const total = iteration() + iteration();
return total == 20;
}