lua stuff

This commit is contained in:
Imbus 2025-08-20 09:49:14 +02:00
parent 88e523ca73
commit 03064b235c
3 changed files with 47 additions and 2 deletions

View file

@ -1,8 +1,11 @@
local result = c_add(10, 25)
print("Type: ", type(result))
print("Result from C function: " .. result)
HereYouCan = {
"Execute Arbitrary Lua Code"
"Execute Arbitrary Lua Code",
}
print(HereYouCan[1])
myprint(HereYouCan[1])
myprint("Hello" .. " " .. "World")