Skip to content

Instantly share code, notes, and snippets.

@mmaa
Created December 7, 2012 17:21
Show Gist options
  • Save mmaa/4234821 to your computer and use it in GitHub Desktop.
Save mmaa/4234821 to your computer and use it in GitHub Desktop.
[1] pry(main)> CONSTANT = 1
=> 1
[2] pry(main)> CONSTANT = 2
(pry):2: warning: already initialized constant CONSTANT
=> 2
[3] pry(main)> CONSTANT.freeze
=> 2
[4] pry(main)> CONSTANT = 3
(pry):4: warning: already initialized constant CONSTANT
=> 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment