summaryrefslogtreecommitdiff
path: root/src/substraction.cpp
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/substraction.cpp
parent10ecf4d95194a273cc6aab89c3a1bcf739a194cd (diff)
Add parser
Diffstat (limited to 'src/substraction.cpp')
-rw-r--r--src/substraction.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/substraction.cpp b/src/substraction.cpp
new file mode 100644
index 0000000..ba995b5
--- /dev/null
+++ b/src/substraction.cpp
@@ -0,0 +1,10 @@
+#include "include/substraction.hpp"
+#include "include/syntax_tree.hpp"
+
+
+Substraction::Substraction(SyntaxTree *left, SyntaxTree *right)
+ : SyntaxTree{left, right} {}
+
+float Substraction::eval() const {
+ return left->eval() - right->eval();
+}