Aaron Sherman wrote: > However, in existing CPAN modules that I happen to have in my cache at > the moment: > > [...] > > So it's not THAT bad.
hmmm... I think you should probably also grep for modules that do something
like:
my $self = {
meta => 'something',
dispatcher => $something,
# ...
};
return bless $self;
if Perl5 objects are to be implemented somewhat 'transparently' in Perl6,
things like:
$obj->{meta}
will become:
$obj.meta
when used from Perl6. or not?
cheers,
Aldo
