A4 aliasing syntax (and a note on statement modification)

2003-02-08 Thread gpurdy
All -- A4 gives this example of C: for @foo -> $a, $b { ... } # "for @foo into $a and $b..." but, this seems more natural to me (and, it turns out, closer to the P5 syntax for ill or good): for $a, $b <- @foo { ... } # "for $a and $b from @foo..." (heck, that even looks like shifting

Re: A4 aliasing syntax (and a note on statement modification)

2003-02-08 Thread Luke Palmer
> From: [EMAIL PROTECTED] > Date: Fri, 7 Feb 2003 16:28:43 -0500 > > A4 gives this example of C: > > for @foo -> $a, $b { ... } # "for @foo into $a and $b..." > > but, this seems more natural to me (and, it turns out, closer to the P5 > syntax for ill or good): > > for $a, $b <- @foo {