Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 696 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 696 Bytes

##Instruction for build & run Logical Expressions parser/lexer

  1. Install one of the proposed IDEs: Rider(cross-platform) or Visual Studio(Windows only)

  2. Open project as .NET Core console application

  3. Download FsLexYacc nuget package via Nuget package manager in your IDE

  4. Run fsyacc.exe parser.fsp --module LogicParser

  5. Run fslex.exe lexer.fsl --unicode

  6. Add following files to the project: LogicParser.fsi LogicParser.fs LogicLexer.fs

  7. Arrange files in solution explorer as shown below(recommend):

    • LogicTree.fs
    • LogicParser.fs
    • LogicLexer.fs
    • Program.fs
    • other not .fs? files
  8. Run default configuration for project