Created
April 11, 2019 08:45
-
-
Save elcortez/902a25cd6d8ed0063f20220212e2f76f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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