11 lines
172 B
Lua
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
|