”fmt” 5 ”log” 6 ”net/http” 7 ) 8 9 func main() { 10 urls := []string{ 11 ”http://example.com”, 12 ”http://example.net”, 13 ”http://example.co.jp”, 14 ”http://example.org”, 15 } 16 17 for _, url := range urls { 18 res, err := http.Get(url) 19 if err != nil { 20 log.Fatal(err) 21 } 22 defer res.Body.Close() 23 fmt.Printf(”%s\t%s\n”, url, res.Status) 24 } 25 } 30/36