Fixes printing bug for string literals

pull/6/head
venko 2021-05-27 14:10:44 -07:00
parent a69516b917
commit ece20a99b5
1 changed files with 1 additions and 1 deletions

View File

@ -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: