The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# This grammar illustrate the use of 'strict'
# see http://search.cpan.org/perldoc?Parse::Eyapp::debuggingtut
# see also file 'bugyapp2.eyp'
%strict
%token NUM
%%
expr: NUM;
%%