I've always liked how VB allowed you to define "instance methods." 
Basically a more elegant way of doing callbacks, plus allows some 
structure within your callbacks. Will Perl6 allow this (Perl5 sortof did, 
but since the "bless" way of doing things is going away...)

Perhaps...

 class foo {...}

 $x = new foo;  #BTW, is there some standard way of creating instances 
                #now?
 method $x.frob() {...}

 $x.frob;

Luke

Reply via email to