On Mon, Apr 25, 2005 at 02:37:40PM -0500, Rod Adams wrote:
: Something that crossed my mind while writing this: Does
:
: for { say } <== @a;
:
: Work?
Nope. The brackets where a term is expected would be misconstrued
as an argument to the "for". Maybe we need an @= for a placeholder:
for @= { say } <== @;
Or maybe we could just make () serve that purpose:
for () { say } <== @;
Larry
