The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# 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;
%%