Skip to content

Instantly share code, notes, and snippets.

@will
Created November 21, 2009 17:40
Show Gist options
  • Select an option

  • Save will/240213 to your computer and use it in GitHub Desktop.

Select an option

Save will/240213 to your computer and use it in GitHub Desktop.
class String
def ~
self.reverse
end
end
~"hello" # => "olleh"
class String
def ~@
self.reverse
end
end
~"hello" # => "olleh"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment