Skip to content

Instantly share code, notes, and snippets.

@icco
Created October 7, 2014 08:35
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 icco/8e67d1f2ff9ba1af5619 to your computer and use it in GitHub Desktop.
Save icco/8e67d1f2ff9ba1af5619 to your computer and use it in GitHub Desktop.
(1..100).each do |i|
out = ""
out += "Crackle" if i%3 == 0
out += "Pop" if i%5 == 0
out = i.to_s if out.empty?
print "#{out}\n"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment