summaryrefslogtreecommitdiff
path: root/src/include/substraction.hpp
diff options
context:
space:
mode:
authorHombreLaser <buran@silosneeded.com>2024-06-22 16:45:04 -0600
committerHombreLaser <buran@silosneeded.com>2024-06-22 16:45:04 -0600
commit404826e78a56e15e20d3938aed80945295921745 (patch)
treed607769fccfc4e3c77a9465a9800004421c500cb /src/include/substraction.hpp
parent10ecf4d95194a273cc6aab89c3a1bcf739a194cd (diff)
Add parser
Diffstat (limited to 'src/include/substraction.hpp')
-rw-r--r--src/include/substraction.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/include/substraction.hpp b/src/include/substraction.hpp
new file mode 100644
index 0000000..4a5a8c7
--- /dev/null
+++ b/src/include/substraction.hpp
@@ -0,0 +1,8 @@
+#pragma once
+#include "syntax_tree.hpp"
+
+class Substraction: SyntaxTree {
+public:
+ Substraction(SyntaxTree *left, SyntaxTree *right);
+ float eval() const;
+};