Skip to content

Instantly share code, notes, and snippets.

@mistyrinth
Created November 21, 2018 13:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mistyrinth/290fd789ec381a4a615f01d92fa9fac3 to your computer and use it in GitHub Desktop.
Save mistyrinth/290fd789ec381a4a615f01d92fa9fac3 to your computer and use it in GitHub Desktop.
def hello(message, *names)
allname = ""
names.each do |name|
allname << name << " "
end
print(message, "、", allname, "\n")
end
hello("こんにちは", "田中さん", "山田さん", "伊藤さん")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment