mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 23:13:34 +00:00
10 lines
214 B
Lua
10 lines
214 B
Lua
local mymodule = {}
|
|
|
|
function mymodule.hello()
|
|
SetStatus(200)
|
|
SetHeader('Content-Type', 'text/html; charset=US-ASCII')
|
|
Write("<!doctype html>\r\n")
|
|
Write("<b>Hello World!</b>\r\n")
|
|
end
|
|
|
|
return mymodule
|