Skip to content

Instantly share code, notes, and snippets.

@chiragmongia
Created March 19, 2013 07:13
Show Gist options
  • Select an option

  • Save chiragmongia/5194261 to your computer and use it in GitHub Desktop.

Select an option

Save chiragmongia/5194261 to your computer and use it in GitHub Desktop.
class String
def to_s
puts "---Swapping the case of string---"
p self.swapcase
end
end
p "Enter the string"
line = gets.chomp
line.to_s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment