September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
|
|
@ -0,0 +1,15 @@
|
|||
stop = 6
|
||||
a = 1
|
||||
i = 1 # start
|
||||
a # print result
|
||||
|
||||
fib
|
||||
comefrom if i is 1 # start
|
||||
b = 1
|
||||
comefrom fib # start of loop
|
||||
i = i + 1
|
||||
next_b = a + b
|
||||
a = b
|
||||
b = next_b
|
||||
|
||||
comefrom fib if i > stop
|
||||
Loading…
Add table
Add a link
Reference in a new issue