Skip to content

Instantly share code, notes, and snippets.

@charly-palencia
Created May 12, 2012 15:59
Show Gist options
  • Save charly-palencia/2667293 to your computer and use it in GitHub Desktop.
Save charly-palencia/2667293 to your computer and use it in GitHub Desktop.
Class variable like global variables
class TestVariable
@@A=1
def print_v
@@A
end
end
@@A="WHY?"
test= TestVariable.new
p test.print_v #=> WHY?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment