##Instruction for build & run Logical Expressions parser/lexer
- 
Install one of the proposed IDEs: Rider(cross-platform) or Visual Studio(Windows only)
 - 
Open project as .NET Core console application
 - 
Download FsLexYacc nuget package via Nuget package manager in your IDE
 - 
Run fsyacc.exe parser.fsp --module LogicParser
 - 
Run fslex.exe lexer.fsl --unicode
 - 
Add following files to the project: LogicParser.fsi LogicParser.fs LogicLexer.fs
 - 
Arrange files in solution explorer as shown below(recommend):
- LogicTree.fs
 - LogicParser.fs
 - LogicLexer.fs
 - Program.fs
 - other not .fs? files
 
 - 
Run default configuration for project