fb1(I) = V => V = I.to_string(), if I mod 15 == 0 then V := "FizzBuzz" elseif I mod 3 == 0 then V := "Fizz" elseif I mod 5 == 0 then V := "Buzz" end.