1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/zokrates_cli/examples/functions/shadowing.code
2018-08-20 16:43:53 +02:00

6 lines
121 B
Text

def add(field a,field b) -> (field):
return a+b
def main(field a,field b) -> (field):
field c = add(a,b)
return c