Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    ok($p->parse('2 foo bar'));
    ok(!$p->parse('1'));
    ok(!$p->parse('1 foo bar'));
    
  2. or download this
    my $p = Parse::RecDescent->new(<<'__END_OF_GRAMMAR__');
    
    ...
    ELEM      : /\S+/
    
    __END_OF_GRAMMAR__