aboutsummaryrefslogtreecommitdiff
path: root/pages/projects/simple_parser.md
diff options
context:
space:
mode:
Diffstat (limited to 'pages/projects/simple_parser.md')
-rw-r--r--pages/projects/simple_parser.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/pages/projects/simple_parser.md b/pages/projects/simple_parser.md
new file mode 100644
index 0000000..e6b8f25
--- /dev/null
+++ b/pages/projects/simple_parser.md
@@ -0,0 +1,5 @@
+# SimpleParser
+
+…is a simple parser for resolving mathematical terms.
+
+The term is parsed by generating a binary expression tree using the Shunting-Yard algorithm. The implementation itself does not use any external libraries and relies fully on the features provided by the C++ language and the standard library.