$> cd asgn3
$> make
This will create the executable parser in asgn3/bin subdirectory.
$> 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.