Skip to content

Instantly share code, notes, and snippets.

@k41n3w
Created December 31, 2023 18:05
Show Gist options
  • Save k41n3w/aa552e318b8231eed09edca9ff5f8529 to your computer and use it in GitHub Desktop.
Save k41n3w/aa552e318b8231eed09edca9ff5f8529 to your computer and use it in GitHub Desktop.
Código 9 - Post de 'Passagem de parâmetros em Ruby"
def greet(*people)
people.each do |person|
puts "Olá, #{person}!"
end
end
greet("Alice", "Bob", "Charlie")
# Retorno:
# Olá, Alice!
# Olá, Bob!
# Olá, Charlie!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment