home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / developer / bison.1.24.README < prev    next >
Encoding:
Text File  |  1996-03-06  |  764 b   |  17 lines

  1. Introduction
  2. ************
  3.  
  4.    "Bison" is a general-purpose parser generator that converts a
  5. grammar description for an LALR(1) context-free grammar into a C
  6. program to parse that grammar.  Once you are proficient with Bison, you
  7. may use it to develop a wide range of language parsers, from those used
  8. in simple desk calculators to complex programming languages.
  9.  
  10.    Bison is upward compatible with Yacc: all properly-written Yacc
  11. grammars ought to work with Bison with no change.  Anyone familiar with
  12. Yacc should be able to use Bison with little trouble.  You need to be
  13. fluent in C programming in order to use Bison.
  14.  
  15.    Bison was written primarily by Robert Corbett; Richard Stallman made
  16. it Yacc-compatible.  This edition corresponds to version 1.24 of Bison.
  17.