couch-rust/main.lua
2022-04-11 17:41:18 -05:00

11 lines
172 B
Lua

print("Hello from a lua script!")
function init()
print("Hello from \"init\"")
couch.debug("init")
couch.say_hello("dane", "Hi!")
end
function update(delta)
end