1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00
ZoKrates/zokrates_cli/examples/book/multi_def.zok
2021-10-18 16:54:38 +02:00

9 lines
No EOL
146 B
Text

def foo() -> (field, field):
return 21, 42
def main():
// a is declared here
field a = 1
// b is declared here
a, field b = foo()
return