Added return statements t#04

This commit is contained in:
Scarlett
2025-02-11 17:15:54 -05:00
parent 9c67da0348
commit 466f111c87
10 changed files with 1809 additions and 128 deletions

View File

@ -8,7 +8,7 @@ lexicalStructure:
$(CC) lex.yy.c -o $(EXE)
test1:
./$(EXE) ./tests/test_constants_literals.txt
./$(EXE) ./tests/test_constants_literals.alpha
test2:
./$(EXE) ./tests/test_keywards.alpha
@ -17,10 +17,13 @@ test3:
./$(EXE) ./tests/test_types.alpha
test4:
./$(EXE) ./tests/test_variables.txt
./$(EXE) ./tests/test_variables.alpha
test5:
./$(EXE) ./tests/test_otherpunc.txt
./$(EXE) ./tests/test_otherpunc.alpha
test6:
./$(EXE) ./tests/test_comments.alpha
clean:
rm -f *.o