Steve Midgley schrieb: > I've been working on a weird little problem that I thought people on > this list might have a quick answer for (though the answer may be > "impossible!"): Steve, don't give up so fast, this is Ruby! class Test; end test = Test.new class << test def new_method puts "new method is accessible!" end end test.new_method # => new method is accessible! test1 = test.clone test1.new_method # => new method is accessible! Regards, Pit