Skip to content

Instantly share code, notes, and snippets.

@FaisalFehad
Created September 20, 2016 19:55
Show Gist options
  • Save FaisalFehad/7698a2101ebd298c7f81df39fd0e78f5 to your computer and use it in GitHub Desktop.
Save FaisalFehad/7698a2101ebd298c7f81df39fd0e78f5 to your computer and use it in GitHub Desktop.
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