RosettaCodeData/Task/FizzBuzz/Axe/fizzbuzz.axe
2016-12-05 23:44:36 +01:00

13 lines
192 B
Text

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