Skip to content

Instantly share code, notes, and snippets.

@blvrd
Created April 3, 2024 20:10
Show Gist options
  • Save blvrd/6fad5c2b4c322f845cc6817a1523b81f to your computer and use it in GitHub Desktop.
Save blvrd/6fad5c2b4c322f845cc6817a1523b81f to your computer and use it in GitHub Desktop.
(1..100).to_a.each do |n|
if n % 3 == 0 && n % 5 == 0
puts "CracklePop"
elsif n % 3 == 0
puts "Crackle"
elsif n % 5 == 0
puts "Pop"
else
puts n
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment