1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/examples/reassignment.code
2017-02-16 15:43:31 +01:00

7 lines
88 B
Text

def reassign(x):
a = x + 5
b = a + x
a = 7
c = a + b
a = a + 5
return a + c