diff --git a/PrintStatement.cpp b/PrintStatement.cpp index 542a7bf..6d8bb11 100644 --- a/PrintStatement.cpp +++ b/PrintStatement.cpp @@ -5,14 +5,22 @@ * Author: jimtahu */ +#include + #include "PrintStatement.h" namespace ParseTree { +using namespace std; + PrintStatement::PrintStatement(Value *output) { this->value=output; } +void PrintStatement::Execute(){ + cout<value->getValue()<