13 lines
192 B
Text
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
|