--- Revision None +++ Revision 643834373865 @@ -0,0 +1,13 @@ +class ExampleClass + @variable = "foo" + @@variable = "bar" + + def self.test + puts @variable + end + +end + + + +ExampleClassInstance.test