4 lines
97 B
Text
4 lines
97 B
Text
for i = 1:100
|
|
msg = "Fizz" ^ (i%3==0) * "Buzz" ^ (i%5==0)
|
|
println(msg=="" ? i : msg)
|
|
end
|