leo/tests/compiler/function/iteration.leo

20 lines
233 B
Plaintext
Raw Normal View History

2021-05-05 18:29:44 +03:00
/*
namespace: Compile
expectation: Pass
input_file: input/dummy.in
*/
2020-06-23 04:28:30 +03:00
function one() -> u32 {
return 1u32;
2020-06-23 04:28:30 +03:00
}
2021-05-05 18:29:44 +03:00
function main() -> bool {
let a = 0u32;
2020-06-23 04:28:30 +03:00
2020-07-17 22:59:18 +03:00
for i in 0..10 {
a += one();
}
2020-06-23 04:28:30 +03:00
2021-05-05 18:29:44 +03:00
return a == 10u32;
}