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

7 lines
153 B
Text

// this code does not need to be flattened
def qeval(a):
b = a + 5
c = b + 5 * a
// following line b * (..)
d = b * c + 5 + a
return c + b + c