diff --git a/src/ast.c b/src/ast.c index 9604dbf..d87870b 100644 --- a/src/ast.c +++ b/src/ast.c @@ -705,7 +705,7 @@ void PrintNode(Node *node, uint32_t tabCount) return; case StringLiteral: - printf("%s", node->stringLiteral.string); + printf("%s\n", node->stringLiteral.string); return; case StructDeclaration: