1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/examples/multi_return_sum.code

5 lines
No EOL
69 B
Text

def foo():
return 1, 2
def main():
a, b = foo()
return a + b