home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / OS2-YACC.ZIP / SIMPL.BAK < prev    next >
Text File  |  1980-01-01  |  384b  |  83 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67. %term ID END
  68. %left '+'
  69. %left '*'
  70. %left '('
  71.  
  72. %%
  73. exp:      exp '+' term          = { 1; }
  74.         | term                  = { 2; }
  75.  
  76. term:     term '*' fact         = { 3; }
  77.         | fact                  = { 4; }
  78.  
  79. fact:     '(' exp ')'           = { 5; }
  80.         | ID                    = { 6; }
  81.  
  82. %%