This commit is contained in:
2026-05-14 14:39:34 -05:00
parent 3e47163ee5
commit a38b2736c6
8 changed files with 112 additions and 9 deletions

14
test/code-tests.lua Normal file
View File

@@ -0,0 +1,14 @@
return {
{
name = "VM: basic",
code = [[
.func 0
pushi 2
pushi 3
sum
ret
]],
expected_stack_size = 1,
expected_stack_top = { integer = 5 },
},
}