Help for this page

Select Code to Download


  1. or download this
    use Parse::RecDescent;
    
    ...
    
    my $parser = new Parse::RecDescent ($grammar);
    $parser->Extend("color: '" . join(q['|'],@colors) . "'" );
    
  2. or download this
    my $grammar = q[
        order: quantity color item
    ...
        item: 'pen' | 'pencil'
    ];