Skip to content

Instantly share code, notes, and snippets.

@Will-Sommers
Created December 15, 2013 04:29
Show Gist options
  • Save Will-Sommers/7968882 to your computer and use it in GitHub Desktop.
Save Will-Sommers/7968882 to your computer and use it in GitHub Desktop.
CracklePop for HaSch.
(1..100).each do |x|
if x%15 == 0
puts "CracklePop"
elsif x%3 == 0
puts "Crackle"
elsif x%5 == 0;
puts "Pop"
else
puts x
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment