RosettaCodeData/Task/FizzBuzz/Icon/fizzbuzz-6.icon

9 lines
213 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
# idiomatic buffer builder, 2nd alternative
procedure main()
2014-01-17 05:32:22 +00:00
every i := 1 to 100 do {
s := if i%3 = 0 then "Fizz" else ""
s ||:= if i%5 = 0 then "Buzz"
write(("" ~= s) | i)
}
2013-04-10 21:29:02 -07:00
end