HTTP: Difference between revisions

170 bytes added ,  3 years ago
Made the task more representative of what the task is intended to show.
(Made the URL correct.)
(Made the task more representative of what the task is intended to show.)
Line 5:
Send a GET request to obtain the resource located at the [[wp:Uniform Resource Locator|URL]] "http://www.w3.org/", then print it to a console.
 
The code does not have to be able to handle other types of HTTP request.
There is a separate task for [[HTTPS Request]]s.
<br><br>
 
The code does not have to render the content.
 
The code does not have to be able to handle any HTTP URL.
 
There is a separate task for [[HTTPS Request]]s.
=={{header|8th}}==
<lang forth>"http://www.w3.org" net:get drop >s .</lang>