Skip to content

Instantly share code, notes, and snippets.

@monsteronfire
Created January 9, 2015 09:57
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 monsteronfire/ab2d9ae7ed26ddc6e804 to your computer and use it in GitHub Desktop.
Save monsteronfire/ab2d9ae7ed26ddc6e804 to your computer and use it in GitHub Desktop.
(1..100).each do |i|
puts i
if i % 3 == 0
puts 'Anonymous'
elsif i % 5 == 0
puts 'Llama'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment