RosettaCodeData/Task/Hello-world-Web-server/Tcl/hello-world-web-server-1.tcl

9 lines
237 B
Tcl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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