Garrett asked:
> Any word from on high whether subroutine signatures will apply to
> methods in Perl6?
Well, I hardly qualify as "on high" ("on *a* high" perhaps?) but I can
definitely say this: They will and they won't. ;-)
At compile-time, signatures can only be honoured if the com
John asked:
> Can properties be temp()orarily masked? For example:
>
> foreach my $array (@arrays)
> {
> temp $array.sep = ', '; # assuming this is a real property
> print "$array\n"; # prints "item1, item2, item3, ..."
> }
I would expect so,