RosettaCodeData/Task/Hello-world-Web-server/Wart/hello-world-web-server.wart
2016-12-05 23:44:36 +01:00

7 lines
209 B
Text

with server_socket socket :port 4000
accepting client :from socket
making stdout outfile+fd.client
prn "HTTP/1.0 200 OK"
prn "Content-type: text/plain"
prn ""
prn "Hello, world!"