fb4(I) = cond(I mod 3 == 0, "Fizz", "") ++ cond(I mod 5 == 0, "Buzz", "") ++ cond(not ((I mod 3 == 0; I mod 5==0)), I.to_string(), "").