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
13
Task/FizzBuzz/Axe/fizzbuzz.axe
Normal file
13
Task/FizzBuzz/Axe/fizzbuzz.axe
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
For(I,1,100)
|
||||
!If I^3??I^5
|
||||
Disp "FIZZBUZZ",i
|
||||
Else!If I^3
|
||||
Disp "FIZZ",i
|
||||
Else!If I^5
|
||||
Disp "BUZZ",i
|
||||
Else
|
||||
Disp I▶Dec,i
|
||||
End
|
||||
.Pause to allow the user to actually read the output
|
||||
Pause 1000
|
||||
End
|
||||
Loading…
Add table
Add a link
Reference in a new issue