summaryrefslogtreecommitdiff
path: root/src/include/product.hpp
blob: 1a87f8068e6bda4b05ad3c2cd5b7c6a1ac64e2af (plain)
1
2
3
4
5
6
7
8
9
#pragma once
#include "syntax_tree.hpp"


class Product: SyntaxTree {
public:
  Product(SyntaxTree *left, SyntaxTree *right);
  float eval() const;
};