Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
11
Task/Fibonacci-sequence/Axe/fibonacci-sequence.axe
Normal file
11
Task/Fibonacci-sequence/Axe/fibonacci-sequence.axe
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
Lbl FIB
|
||||
r₁→N
|
||||
0→I
|
||||
1→J
|
||||
For(K,1,N)
|
||||
I+J→T
|
||||
J→I
|
||||
T→J
|
||||
End
|
||||
J
|
||||
Return
|
||||
Loading…
Add table
Add a link
Reference in a new issue