I tried to solve FizzBuzz with Ruby. It's interesting to see the differences between different languages when creating FizzBuzz.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for num in 1..20 do | |
if num%3 == 0 && num%5 == 0 then | |
puts('Fizz Buzz') | |
elsif num%3 == 0 then | |
puts('Fizz') | |
elsif num%5 == 0 | |
puts('Buzz') | |
else | |
puts(num) | |
end | |
end |