module Thing
@@foo = nil
p @@foo
class_eval <<-EOS
p @@foo
def self.check_foo
p @@foo
end
EOS
end
Thing.check_foo
|
Pastie
Support Pastie
or read my
Pastie << self
blog
module Thing
@@foo = nil
p @@foo
class_eval <<-EOS
p @@foo
def self.check_foo
p @@foo
end
EOS
end
Thing.check_foo
|