SYNOPSIS
See
File
userange.pl.File
Range.eyp.File pascalenumeratedvsrange.eyp in examples/debuggintut/
The Bison manual http://www.gnu.org/software/bison/manual/html_mono/bison.html
Compile it with:
eyapp Range.eyp
eyapp -TC pascalnestedeyapp2.eyp
Run it with this options:
$ ./pascalnestedeyapp2.pm -t -i -m 1 -c 'type e = (x, y, z);'
$ ./pascalnestedeyapp2.pm -t -i -m 1 -c 'type e = (x, @, z);'
Try also these inputs:
type e = (x) .. (y);
type r = (x) .. y ;
type r = (x+2)*3 .. y/2 ;
type e = (x, y, z);
type e = (x);
type e = (x, y, z) .. (u+v);