On 4/3/02 3:44 AM, Damian Conway wrote: > Larry indicated to me that blockless declarations of methods and subs > would be illegal.
What's the motivation for this? It seems to me that pre-declarations would
be just as nice (or nicer) as:
module Alpha;
package Beta;
method Gamma::delta(Gamma $self: $d1, $d2);
sub epsilon;
rather than with yaddablocks:
module Alpha {...}
package Beta {...}
method Gamma::delta(Gamma $self: $d1, $d2) {...}
sub epsilon() {...}
-John
