9 lines
171 B
Text
9 lines
171 B
Text
|
|
loop j=1 for 100
|
||
|
|
select
|
||
|
|
when j//15==0 then say 'FizzBuzz'
|
||
|
|
when j//5==0 then say 'Buzz'
|
||
|
|
when j//3==0 then say 'Fizz'
|
||
|
|
otherwise say j.right(4)
|
||
|
|
end
|
||
|
|
end
|