# 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, @b, @c;
# > or: @b, @c ~> push @a;
# > qw/hello world/ ~> print
#
# Just add ^~ and v~ and we've got our own Befunge flavor.
Hehe, yep ;-)
I'm not even sure how that would parse, though that:
@keep <~ grep /good/ <~ @list ~> grep /bad!/ ~> @throw;
would go like:
( @keep <~ grep /good/ <~ @list ) ~> grep /bad!/ ~> @throw;
which is probably not what i wanted...
Frederic