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

20 lines
233 B
Plaintext

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