Skip to content

Instantly share code, notes, and snippets.

@amolbrid
Created November 26, 2010 01:36
Show Gist options
  • Save amolbrid/716166 to your computer and use it in GitHub Desktop.
Save amolbrid/716166 to your computer and use it in GitHub Desktop.
frozen? method example
str = "Can you modify me?"
str.freeze
if str.frozen?
p "cannot modify string"
else
str = "string modified"
p str
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment