dblack / candle.superlink.net wrote:
> Hi --
> 
> 
> I don't have any conclusive, ummm, conclusions to draw.  Just
> wondering what people think of all of this.  There was talk briefly of
> 

If you create only objects and extend them, you can test
the pros and cons.

Find below the "Hello typeless world!" script:

def new
   Object.new
end

module A
   def foo
     print "Hello"
   end

   def to_s
     "typeless"
   end
end

module B
   def baz(x)
     puts " #{x} world!\n"
   end
end

x = new
y = new

x.extend A
y.extend B

x.foo
y.baz(x)

# etc,etc...