RosettaCodeData/Task/HTTP/Forth/http.fth

7 lines
142 B
Forth
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
include unix/socket.fs
s" localhost" 80 open-socket
dup s\" GET / HTTP/1.0\n\n" rot write-socket
dup pad 8092 read-socket type
close-socket