system: Linux mars.sprixweb.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
cmd: 

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