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