RosettaCodeData/Task/FizzBuzz/SenseTalk/fizzbuzz.sensetalk

14 lines
265 B
Plaintext

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