RosettaCodeData/Task/HTTP/Forth/http.fth

7 lines
142 B
Forth
Raw Permalink Normal View History

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