1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/zokrates_cli/examples/pow.code
2018-10-02 14:38:50 +02:00

16 lines
210 B
Text

def main() -> (field):
field x = 2**4
x == 16
x = x**2
x == 256
field y = 3**3
y == 27
field z = y**2
z == 729
field a = 5**2
a == 25
a = a**2
a == 625
a = 5**5
a == 3125
return 1