diff --git a/Nodes.cpp b/Nodes.cpp index 7733072..f9feb68 100644 --- a/Nodes.cpp +++ b/Nodes.cpp @@ -179,6 +179,9 @@ void Main::emit(std::ostream &stream, int indent) { } void Program::emit(std::ostream &stream, int indent) { + stream << "#include \n"; + stream << "#include \n\n"; + for (Function *f: functions) { f->emit(stream); }