If I have a String src that is similar to the following:
---cut---
module Foo
class Bar
def zim()
end
end
end
----cut---
I then call "eval(src)". After that, shouldn't
Object.new.get_const("Foo") return an object, and not nil?
Thanks
David