Method Ruby

def greeting()
  yield "Hello", "there!"
  yield "Bye", "now."
end
greeting {|word_one, word_two | puts word_one + " " + word_two}