home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / OS2-YACC.ZIP / EX613.Y < prev    next >
Text File  |  1983-12-24  |  105b  |  11 lines

  1. %term 'c'
  2. %term 'd'
  3. %%
  4.  
  5. s:      c''c    = { }
  6.  
  7. c:        'c'c  = { }
  8.         | 'd'   = { }
  9. %%
  10.  
  11.