home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ruby164.zip / rbemx164.zip / ruby / share / doc / racc-1.3.9 / sample / lalr.y < prev    next >
Text File  |  2001-04-07  |  119b  |  20 lines

  1. #
  2. # LALR grammer (not LL/SLR)
  3. #
  4.  
  5. class A
  6. rule
  7.  
  8. A : L '=' E
  9.  
  10. L : i
  11.   | R '^' i
  12.  
  13. E : E '+' R
  14.   | R
  15.   | '@' L
  16.  
  17. R : i
  18.  
  19. end
  20.