finished while loops

This commit is contained in:
Lorenzo Torres 2025-12-03 22:41:55 +01:00
parent 21b43af69d
commit 006015c607
7 changed files with 42 additions and 9 deletions

2
lc.c
View file

@ -220,7 +220,7 @@ void print_ast(ast_node *node, int depth) {
int main(void)
{
FILE *fp = fopen("examples/for.l", "r");
FILE *fp = fopen("examples/hello_world.l", "r");
usize size = 0;
fseek(fp, 0, SEEK_END);
size = ftell(fp);