Skip to content

Instantly share code, notes, and snippets.

@anthonyk1225
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save anthonyk1225/71ca968c8b4ead64bd94 to your computer and use it in GitHub Desktop.

Select an option

Save anthonyk1225/71ca968c8b4ead64bd94 to your computer and use it in GitHub Desktop.
def cracklepop
(1..100).each do |i|
if i % 3 == 0 && i % 5 == 0
puts 'CracklePop'
elsif i % 5 == 0
puts 'Pop'
elsif i % 3 == 0
puts 'Crackle'
else
puts i
end
end
end
cracklepop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment