1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00
ZoKrates/zokrates_cli/examples/arrays/value.zok
2019-09-24 12:05:43 +02:00

10 lines
No EOL
194 B
Text

def main() -> ():
field[3] a = [1, 2, 3]
bool[3] b = [true, true, false]
field[3][2] c = [[1, 2], [3, 4], [5, 6]]
field[3] aa = [...a]
bool[3] bb = [...b]
field[3][2] cc = [...c]
return