2022-11-13 10:39:28 -08:00

6 lines
60 B
Python

>>> def square(x):
... return x*x
...
>>> square(10)
100