lesi/scripts/helloworld.lua

8 lines
80 B
Lua
Raw Permalink Normal View History

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