Added 2 more tests for code emit

- Added do-while test
- Added for-loop test
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-26 13:27:24 +02:00 committed by GitHub
parent 4e37078276
commit 215f301557
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -171,3 +171,12 @@ jobs:
run: |
./tlang compile source/tlang/testing/simple_while.t
./tlang.out
- name: Simple do-while
run: |
./tlang compile source/tlang/testing/simple_do_while.t
./tlang.out
- name: Simple for-loops
run: |
./tlang compile source/tlang/testing/simple_for_loops.t
./tlang.out