mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-14 18:27:54 +00:00
8 lines
104 B
Lua
8 lines
104 B
Lua
|
local mymodule = {}
|
||
|
|
||
|
function mymodule.hello()
|
||
|
Write("<b>Hello World!</b>\r\n")
|
||
|
end
|
||
|
|
||
|
return mymodule
|