- or download this
# make_parser.pl
...
Parse::RecDescent->Precompile($grammar, 'Parser')
or die("Bad grammar\n");
- or download this
# test.pl
...
my $parser = Parser->new();
print(Dumper($parser->parse($text)));
- or download this
>perl make_parser.pl
...
'squid'
]
];