Files in this directory:

Absyn.fs	F# module defining the Exp data type
bin         Folder with fslex and fsyacc executable and runtime libraries
Expr.fs		F# module defining an interpreter and a compiler for expressions
ExprLex.fs	F# module defining the lexer (generated by fslex from ExprLex.fsl)
ExprPar.fsi	Interface (signature) file for parser generated by fsyacc
ExprPar.fs	F# module defining the parser (generated by fsyacc from ExprPar.fsy)
ExprPar.fsy	Parser specification for the simple expression language
ExprLex.fsl	Lexer specification for the simple expression language
main.fsx	F# interactive script with a few examples
Parse.fs	F# module applying the generated Parser to strings or files.
README.txt	Explanation on how to use these files
README2.txt	This file

