1
0
Fork 0
mirror of https://gitlab.com/niansa/pilang2.git synced 2025-03-06 20:49:22 +01:00
pilang2/benchmark/python.py
2020-04-13 16:05:36 +02:00

9 lines
147 B
Python

# Run via time command to see execution time!
# number^2 until number > 50
number = 1
while number < 50:
number += number
print(number)