aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README6
1 files changed, 6 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..25e2559
--- /dev/null
+++ b/README
@@ -0,0 +1,6 @@
+Example code demonstrating how to do operator-precedence
+parsing directly to an abstract syntax tree (rather than
+to prefix or postfix like the shunting yard algorithm,
+which is better for you want to perform the operations
+immediately) with dynamic operator, precedence, and
+associativity definitions.