diff --git a/Nodes.cpp b/Nodes.cpp index f9feb68..e5cae31 100644 --- a/Nodes.cpp +++ b/Nodes.cpp @@ -133,7 +133,7 @@ void Assignment::emit(std::ostream &stream, int indent) { void Print::emit(std::ostream &stream, int indent) { stream << "std::cout << "; expression->emit(stream); - stream << " << std::endl;"; + stream << " << std::endl"; } void Input::emit(std::ostream &stream, int indent) {