RosettaCodeData/Task/FizzBuzz/Arc/fizzbuzz-2.arc

5 lines
193 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(for n 1 100
(prn:check (string (when (multiple n 3) 'Fizz)
(when (multiple n 5) 'Buzz))
~empty n)) ; check created string not empty, else return n