Finish implementing LUA_PROBE

This commit is contained in:
2024-09-05 01:33:14 -04:00
parent 2d8015c2ae
commit 2913f2bac2
6 changed files with 30 additions and 10 deletions

View File

@@ -47,9 +47,9 @@ function bechar()
makeclass("engio")
function engio.myfunction(actor, place, a, b, c)
print("Myfunction actor=", actor," place=", place)
pprint("A:", a)
pprint("B:", b)
pprint("C:", c)
print("A:", a)
print("B:", b)
print("C:", c)
return {13, "chicken", {2,3,4}, false}
end