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

5 lines
193 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01: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