7 lines
209 B
Text
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!"
|