On Sun Jun 27 14:21:29 2010, cognominal wrote:
> > say <1 2 3>.>>.perl
> Confused at line 1, near "say <1 2 3"
> > say <1 2 3>.>>perl
> Confused at line 1, near "say <1 2 3"
> > say <1 2 3>>>perl
> Confused at line 1, near "say <1 2 3"

Only the first of those three is valid syntax, according to STD:


$ std -e 'say <1 2 3>.>>.perl'
ok 0:00.99 2476m

$ std -e 'say <1 2 3>.>>perl'
===SORRY!===
Confused at your script line 1:
------> say <1 2 3>.>>⏏perl
    expecting any of:
        postfix
        postfix_prefix_meta_operator
Parse failed
FAILED 0:00.89 2477m

$ std -e 'say <1 2 3>>>perl'
===SORRY!===
Preceding context expects a term, but found infix > instead at your script line 
1:
------> say <1 2 3>>⏏>perl
Parse failed
FAILED 0:00.89 2477m

Reply via email to