1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/examples/multi_return.code
2018-01-22 15:07:08 +01:00

7 lines
95 B
Text

def foo(a):
b = 12*a
return a, 2*a, 5*b, a*b
def main(i):
x, y, z, t = foo(i)
return 1