Skip to content

Latest commit

 

History

History

asgn3

Instructions for building an executable:

$> cd asgn3
$> make

This will create the executable parser in asgn3/bin subdirectory.

Running the executable

$> bin/parser <file>

where is the path to the C# code that you want to run the parser on.

Sample test codes have been included under the asgn3/test subdirectory. They can be run as follows:

$> bin/parser test/test1.cs

##Note: The code has been implemented in C++11. Please ensure you have g++ available.