lesi/scripts/helloworld.lua

7 lines
80 B
Lua

local M = {}
function M.hw()
print(_VERSION, "Hello World!")
end
return M