On Dec 10, 2007, at 5:34 PM, furtive.clown / gmail.com wrote: > Remember you can reduce nesting if you wish, > > Mod = Module.new # equivalent to module Mod ; end > > class Mod::Klass > def one_method(param1, param2) > puts > puts "hello world" > puts > end > > def two_method > puts "hello again" > end > end > > class Mod::NotherKlass > def three_method > puts "hi already" > end > end Wow. I really really like that. Do you actually use that or are you just proposing it? -ari