Skip to content

Instantly share code, notes, and snippets.

Created April 28, 2015 19:38
Show Gist options
  • Save anonymous/38a47d322e8bdc4ba4ba to your computer and use it in GitHub Desktop.
Save anonymous/38a47d322e8bdc4ba4ba to your computer and use it in GitHub Desktop.
splat splat
def say(what, *people)
people.each { |person| puts "#{person}: #{what}"}
end
say "Hello!", "Bob", "Larry", "Pete"
people = ["Bob", "Larry", "Pete"]
say "Howdy!", *people
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment