1
0
Fork 0
mirror of synced 2025-09-23 04:08:33 +00:00
ZoKrates/zokrates_cli/examples/spaces_tabs_comments.zok
2022-04-06 20:23:58 +02:00

15 lines
219 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
}