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

13 lines
196 B
Text

// comment
// comment
def main(field x) -> (field):
// comment
field y = x**3
field b = x**5
field c = x / 2
field d = (2 * x + 3 * b) * (x - b)
return y + x + y + c + d
// comment