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

5 lines
No EOL
76 B
Text

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