Your IP : 216.73.216.1


Current Path : /usr/share/doc/perl-Parse-RecDescent/demo/
Upload File :
Current File : //usr/share/doc/perl-Parse-RecDescent/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 ()>