1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00
ZoKrates/zokrates_cli/examples/book/for.zok
2020-08-04 20:49:32 +02:00

8 lines
No EOL
157 B
Text

def main() -> field:
field res = 0
for field i in 0..4 do
for field j in i..5 do
res = res + i
endfor
endfor
return res