Core: Add continue keyword

This commit is contained in:
Krzosa Karol
2023-04-21 08:02:58 +02:00
parent e6bf6b680e
commit 200b5e4f9f
11 changed files with 33 additions and 11 deletions

View File

@@ -250,6 +250,10 @@ void core__stringify(Ast *ast) {
genln("pass");
} break;
case AST_CONTINUE: {
genln("continue");
} break;
case AST_BREAK: {
genln("break");
} break;