7 lines
80 B
Lua
7 lines
80 B
Lua
local M = {}
|
|
|
|
function M.hw()
|
|
print(_VERSION, "Hello World!")
|
|
end
|
|
|
|
return M
|