NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
:Method (Score:1)
I played the game even a bit more in the last weeks:
sub foo
self->baz();
print class, ': ', args->foo;
}
Called via:
$object->foo( foo => 23, bar => $bar_obj );
"args" returns just a container object, that uses autoload to simulate accessors. That's just to capture typos. It's mostly following the Perl 6 signature idea (at least the current one).
One problem is that it just can do positional or named arguments, not mixed:
sub snafu
print args->foo, args->bar;
}
$object->snafu( 1, 2 );
Thanks to the Alias module it's also possible to do a
Ordinary morality is for ordinary people. -- Aleister Crowley
Reply to This
Re: (Score:1)
Hmmm, it may pair nicely with Moose [cpan.org]: although the latter claims not to be a Perl 6 implementation in Perl 5, it is admittedly heavily inspired by Perl 6 itself, and to some extent imports Perl 6 semantics, with special emphasis on OO features, in Perl 5. Also, it seems that unlike e.g. v6 [cpan.org], it is much less experimental a
-- # This prints: Just another Perl hacker, seek DATA,15,0 and print q... ; __END__