Path : /usr/share/doc/perl-Parse-RecDescent-1.967009/demo/ |
Current File : //usr/share/doc/perl-Parse-RecDescent-1.967009/demo/demo_codeblock.pl |
#! /usr/bin/perl -w use Parse::RecDescent; $RD_TRACE=1; my $parse = Parse::RecDescent->new(do{local$/;<DATA>}); while (<>) { use Data::Dumper 'Dumper'; print Dumper [ $parse->line($_) ]; } __DATA__ line: block | call* block: <perl_codeblock> call: "foo" <perl_codeblock ()>