Last active
August 29, 2015 14:13
-
-
Save katiesmillie/e417972802de021b3d3a to your computer and use it in GitHub Desktop.
CracklePop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.upto(100) { |i| | |
if i % 3 == 0 and i % 5 == 0 | |
puts "CracklePop" | |
elsif i % 3 == 0 | |
puts "Crackle" | |
elsif i % 5 == 0 | |
puts "Pop" | |
else | |
puts i | |
end | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment