# Damian Conway wrote:
# @out = sort <~ map {...} <~ grep {...} <~ @a;
#
# Or, under a special rule for variables on the LHS:
#
# @out <~ sort <~ map {...} <~ grep {...} <~ @a;
Hello,
Can one see it as a shell redirection/pipe? This may sound funny,
but is the foll
# Rafael Garcia-Suarez [mailto:[EMAIL PROTECTED]] wrote:
# frederic fabbro <[EMAIL PROTECTED]> wrote:
# > so one can also:
# >@keep <~ grep /good/ <~ @list ~> grep /bad!/ ~> @throw;
# >
# > is this if valid too?
# >@b ~> @a <~ @c; # push @a,