flisp/examples/fib.py
2025-03-14 22:54:43 +01:00

13 lines
122 B
Python

i = 0
while i < 10000:
a = 0
b = 1
c = 0
n = 0
while n < 40:
c = b
b += a
a = c
n += 1
i+=1