From d792d2d8c25448cdb4c5514596229b733145586b Mon Sep 17 00:00:00 2001 From: Andre Wagner Date: Fri, 15 May 2026 10:43:21 -0500 Subject: [PATCH] . --- lib/compiler/compiler.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compiler/compiler.lua b/lib/compiler/compiler.lua index 7fc4201..4b53bb9 100644 --- a/lib/compiler/compiler.lua +++ b/lib/compiler/compiler.lua @@ -286,7 +286,7 @@ local function assemble(proto) replace32(next_function_pos, #bin) end - for _, b in ipairs(bin) do io.write(string.format("%02x", b) .. ' ') end; print() + -- for _, b in ipairs(bin) do io.write(string.format("%02x", b) .. ' ') end; print() return string.char(table.unpack(bin)) end