From: David Corbin Date: 2002-03-18T09:11:38+09:00 Subject: eval/Module question 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