Instance Variables Instance variables can be local to the class/module When explicitly specified, or by default @foo = 42 # can be accessed from subclasses @_foo = 55 # local to the class/module Or other way around.