Hello world/Web server: Difference between revisions

m
Attribution note
(→‎Tcl: Added implementation)
m (Attribution note)
Line 81:
}
}</lang>
 
 
=={{header|Perl}}==
Line 144 ⟶ 143:
 
=={{header|Tcl}}==
This version is adapted from [http://wiki.tcl.tk/28412 the Tcler's Wiki].
<lang tcl>proc accept {chan addr port} {
while {[gets $chan] ne ""} {}
Anonymous user