Skip to content

Instantly share code, notes, and snippets.

@nassredean
Created December 16, 2015 15:30
Show Gist options
  • Save nassredean/72a5389b03cb7eff5939 to your computer and use it in GitHub Desktop.
Save nassredean/72a5389b03cb7eff5939 to your computer and use it in GitHub Desktop.
class A
@color = 'red'
puts @color
end
=> red
=> nil
class A
@color = 'blue'
puts @color
end
=> blue
=> nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment