Jump to content

HTTP: Difference between revisions

5 bytes removed ,  3 years ago
Undo revision 315443 by WdeCvfYlmB (talk)
(Undo revision 315444 by WdeCvfYlmB (talk))
(Undo revision 315443 by WdeCvfYlmB (talk))
Line 893:
 
=={{header|Go}}==
<lang go>package main
package main
import (
"io"
Line 900 ⟶ 901:
)
func main() {
resp, _ := http.Get("http://www.w3.org/Home.html")
io.Copy(os.Stdout, resp.Body)
}
}</lang>
 
=={{header|Groovy}}==
<lang groovy>new URL("http://www.w3.org/Home.html").eachLine {
new URL("http://www.rosettacode.org").eachLine { println it }
}</lang>
 
=={{header|GUISS}}==
10,333

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.