leo/compiler/tests/function/iteration_repeated.leo
2020-07-30 12:10:33 -07:00

15 lines
203 B
Plaintext

function iteration() -> u32 {
let mut a = 0u32;
for i in 0..10 {
a += 1;
}
return a
}
function main() {
let total = iteration() + iteration();
assert_eq!(total, 20);
}