Skip to content

Instantly share code, notes, and snippets.

@RedSoxFan22
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RedSoxFan22/30242f6317f6e909d6b9 to your computer and use it in GitHub Desktop.
Save RedSoxFan22/30242f6317f6e909d6b9 to your computer and use it in GitHub Desktop.
Iron Yard PreWork Ruby Code
x = 1
while x <= 100
if x % 3 == 0
puts "Fizz"
elsif x % 5 == 0
puts "Buzz"
else
puts x
end
x += 1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment