Skip to content

Instantly share code, notes, and snippets.

@zetter
Created September 10, 2013 09:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zetter/6506998 to your computer and use it in GitHub Desktop.
Save zetter/6506998 to your computer and use it in GitHub Desktop.
Sytax for declaring frozen strings
class String
def -@
self.freeze
end
end
#> x = -"abc" #=> "abc"
#> x[1] = 'd'
# RuntimeError: can't modify frozen String
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment