On Fri, Aug 20, 2004 at 04:46:33PM -0400, Matt Diephouse wrote:
: On Fri, 20 Aug 2004 13:31:12 -0700, Larry Wall <[EMAIL PROTECTED]> wrote:
: > It's vaguely possible I could be persuaded on the basis that
: >
: > for zip @a � @b <-> { ($^a,$^b) = ($^b,$^a) }
:
: Shouldn't that be:
:
: for zip @a, @b <-> { ... }
: --or--
: for @a � @b <-> { ... }
:
: ?
Yes, a typo. Though it's not actually clear yet whether you have to
write zips args with semicolons, which is why I partially switched
to � in midthink.
Larry