RosettaCodeData/Task/Hello-world-Web-server/Tcl/hello-world-web-server-1.tcl
2015-02-20 00:35:01 -05:00

8 lines
237 B
Tcl

proc accept {chan addr port} {
while {[gets $chan] ne ""} {}
puts $chan "HTTP/1.1 200 OK\nConnection: close\nContent-Type: text/plain\n"
puts $chan "Goodbye, World!"
close $chan
}
socket -server accept 8080
vwait forever