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