|
repeat 100
|
|
put "" into output
|
|
if the counter is a multiple of 3 then
|
|
put "Fizz" after output
|
|
end if
|
|
if the counter is a multiple of 5 then
|
|
put "Buzz" after output
|
|
end if
|
|
if output is empty then
|
|
put the counter into output
|
|
end if
|
|
put output
|
|
end repeat
|