RosettaCodeData/Task/FizzBuzz/SenseTalk/fizzbuzz.sensetalk
2023-07-01 13:44:08 -04:00

13 lines
265 B
Text

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