5 lines
91 B
Text
5 lines
91 B
Text
using HttpServer
|
|
server = Server() do req, res
|
|
"Goodbye, World!"
|
|
end
|
|
run(server, 8080)
|