From 2634ddd1ca2039fa10bf48aa49ff10013a829f1d Mon Sep 17 00:00:00 2001 From: Andre Wagner Date: Fri, 8 May 2026 14:02:06 -0500 Subject: [PATCH] . --- lua-temp/TODO.md | 6 +++--- lua-temp/tests.lua | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/lua-temp/TODO.md b/lua-temp/TODO.md index d4ece75..853472c 100644 --- a/lua-temp/TODO.md +++ b/lua-temp/TODO.md @@ -8,9 +8,9 @@ Progress of the Lua port: - [x] Functions - [x] Calling functions - [x] Calling functions with parameters -- [ ] Control flow - - [ ] Labels in Assembly - - [ ] Recursion +- [x] Control flow + - [x] Labels in Assembly + - [x] Recursion - [ ] Strings - [ ] From constants - [ ] Garbage collection diff --git a/lua-temp/tests.lua b/lua-temp/tests.lua index 4cec26e..9a54087 100644 --- a/lua-temp/tests.lua +++ b/lua-temp/tests.lua @@ -92,7 +92,6 @@ do TEST "Parser: labels" } local found = assemble(source) - pprint(found) assert_eq(found, expected) end