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