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

13 lines
194 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