Add script context
Some checks failed
Build Dusk / build-linux (push) Successful in 1m41s
Build Dusk / build-psp (push) Failing after 2m36s

This commit is contained in:
2025-12-04 20:57:12 -06:00
parent 8c74ee31e0
commit 4e1b404820
13 changed files with 369 additions and 90 deletions

View File

@@ -1 +1,7 @@
print("Test Lua script")
function testFunction()
print("Hello from testFunction!")
end
function doAdd(a, b)
return a + b
end