RosettaCodeData/Task/FizzBuzz/Axe/fizzbuzz.axe
2023-07-01 13:44:08 -04: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