#include "include/operand.hpp" #include "include/syntax_tree.hpp" #include "include/tokenizer.hpp" Operand::Operand(int value) : SyntaxTree{nullptr, nullptr} ,value{value} {} float Operand::eval() const { return value; }