Help for this page

Select Code to Download


  1. or download this
    #!/home/rir/rakudo/parrot_install/bin/perl6
    
    ...
        die "dying no match"  unless  $m;
        say "$m<expression> =  $m.ast()";
    }
    
  2. or download this
       rule expression { <numeric> <op> <numeric> }
    
  3. or download this
    token rhs { <numeric> | <expression> }
    
  4. or download this
       rule expression { <lhs> ( <op> <rhs> )+ }