home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
compcomp
/
os2yacc
/
simpl.y
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1989-11-04
|
319 b
|
18 lines
%term ID END
%left '+'
%left '*'
%left '('
%%
exp: exp '+' term = { 1; }
| term = { 2; }
term: term '*' fact = { 3; }
| fact = { 4; }
fact: '(' exp ')' = { 5; }
| ID = { 6; }
%%