trans. (T. Onoma) wrote: > Not sure I explained this well enough. Let me elaborate just a tad. > > On Saturday 27 November 2004 03:06 pm, trans. (T. Onoma) wrote: > | Consider: > | > | module M > | def initialize:pre > | print "A" > | end > | def initialize > | print "M" > | end > | end > | > | class C > | include M > | def initialize > | super > | print "C" > | end > | end > | > | C.new ; puts > | > | what will be the output? > > Of course the answer is > > #-> AMC I'm not sure it is that. I'm waiting for somebody that knows how this will be handled in Rite to answer. I can see AMC being a valid answer of course, but I am not sure if it will be the one Rite gives.