Created
September 20, 2016 19:55
-
-
Save FaisalFehad/7698a2101ebd298c7f81df39fd0e78f5 to your computer and use it in GitHub Desktop.
This file contains 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 upcase_words(words) | |
puts "#{words}".upcase | |
end | |
def downcase_words(words) | |
puts "#{words}".downcase | |
end | |
downcase_words("hEllo My DeAr") | |
upcase_words("hEllo My DeAr") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment