We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b932fd4 commit 5d7c599Copy full SHA for 5d7c599
README.md
@@ -0,0 +1,17 @@
1
+# Parse-Tree-in-C
2
+An implemention of Parse Tree for a Parser in C
3
+
4
+### Building
5
+First, download the dependencies:
6
+```bash
7
+./download_dependencies.sh
8
+```
9
10
+Then, to build the static library, run the following commands from the terminal:
11
12
+mkdir build ; cd build && cmake .. && make ; cd ..
13
14
+This will build ```libParseTree.a``` in ```./lib``` directory.
15
16
+### Usage
17
+See ```include/ParseTree.h``` for information about functionality provided by this module
0 commit comments