Hi, At Tue, 24 Jun 2003 13:15:43 +0900, lunfis / gmx.de wrote: > Is there any way to access objects (eg. constants) from within a 'module' > that was loaded with wrap=true, like > > foo.rb: > X = 1 Not impossible, but strongly unrecommended. ::Object.class_eval{const_set(:X, 1)} -- Nobu Nakada