Help for this page

Select Code to Download


  1. or download this
    my $parser = new Parse::RecDescent($grammar);
    
  2. or download this
    my $parser = Parse::RecDescent->new($grammar) or die "Failed to create
    + parser.\n";
    
  3. or download this
    my $grammar=<<'END_OF_GRAMMAR';
    ...
    END_OF_GRAMMAR
    my $parser = Parse::RecDescent->new($grammar) or die "Failed to create
    + parser.\n";
    
  4. or download this
    my $parser = Parse::RecDescent->new(<<'END_OF_GRAMMAR') or die "Failed
    + to create parser.\n";
    ...
    END_OF_GRAMMAR