couch-rust/main.lua

10 lines
138 B
Lua
Raw Normal View History

2022-04-09 12:42:18 -05:00
print("Hello from a lua script!")
2022-04-11 16:14:09 -05:00
function init()
print("Hello from \"init\"")
couch.debug("init")
end
function update(delta)
end