fix pow example
This commit is contained in:
parent
41b42e06eb
commit
04d1ba0545
1 changed files with 5 additions and 5 deletions
|
@ -1,13 +1,13 @@
|
||||||
def main():
|
def main() -> (field):
|
||||||
x = 2**4
|
field x = 2**4
|
||||||
x == 16
|
x == 16
|
||||||
x = x**2
|
x = x**2
|
||||||
x == 256
|
x == 256
|
||||||
y = 3**3
|
field y = 3**3
|
||||||
y == 27
|
y == 27
|
||||||
z = y**2
|
field z = y**2
|
||||||
z == 729
|
z == 729
|
||||||
a = 5**2
|
field a = 5**2
|
||||||
a == 25
|
a == 25
|
||||||
a = a**2
|
a = a**2
|
||||||
a == 625
|
a == 625
|
||||||
|
|
Loading…
Reference in a new issue