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