As I become more familiar with Ruby and Rails I’m of course going to start to understand better ways to do a snippet of code. Here is an updated script that is a little leaner:
(1..100).each do |i|
fb = []
fb << "Fizz" if (i % 3) == 0
fb << "Buzz" if (i % 5) == 0
fb << i if (i % 3) != 0 and (i % 5) != 0
puts (fb.join "")
end
I am still tring to review my notes, so I just ask that those of you awaiting my review of the Web 2.0 Expo please continue to be patient.