CPlay/lua_embed/script.lua
2025-08-20 09:49:36 +02:00

11 lines
232 B
Lua

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