1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00
ZoKrates/zokrates_cli/examples/book/array.code

4 lines
No EOL
85 B
Text

def main() -> (field):
field[3] a = [1, 2, 3]
a[2] = 4
return a[0] + a[2]