1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/examples/functions.code
2017-04-06 15:30:41 +02:00

7 lines
109 B
Text

// only using add, no need to flatten
def main(a,b):
c = add(a,b)
return c
def add(a,b):
return a + b