mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-04 16:27:40 +03:00
15 lines
209 B
Plaintext
15 lines
209 B
Plaintext
|
function iteration() -> u32 {
|
||
|
let mut a = 0u32;
|
||
|
|
||
|
for i in 0..10 {
|
||
|
a += 1;
|
||
|
}
|
||
|
|
||
|
return a
|
||
|
}
|
||
|
|
||
|
function main() {
|
||
|
let total = iteration() + iteration();
|
||
|
|
||
|
console.assert(total == 20);
|
||
|
}
|