Created
March 25, 2010 17:51
Revisions
-
ericanderson revised this gist
Mar 25, 2010 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,4 +6,7 @@ def stuff puts x end end end x = Q::C.new.stuff # NameError: undefined local variable or method `x' for #<Q::C:0x100348c20> -
ericanderson renamed this gist
Mar 25, 2010 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
There are no files selected for viewing
File renamed without changes. -
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ module Q x = 3 class C def stuff puts x end end end