Skip to content

Instantly share code, notes, and snippets.

@elcortez
Created April 11, 2019 08:45
Show Gist options
  • Select an option

  • Save elcortez/902a25cd6d8ed0063f20220212e2f76f to your computer and use it in GitHub Desktop.

Select an option

Save elcortez/902a25cd6d8ed0063f20220212e2f76f to your computer and use it in GitHub Desktop.
def beautify_name(first_name, last_name)
full_name = "#{first_name.capitalize} #{last_name.upcase}"
yield(full_name)
end
message = beautify_name("john", "lennon") do |full_name|
"Greetings #{full_name}, you look quite fine today!"
end
puts message # => "Greetings John LENNON, you look quite fine today!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment