17 lines
188 B
Go
Raw Normal View History

2022-02-12 00:22:02 +01:00
package main
import (
"fmt"
"net/http"
"os"
)
func main() {
resp, err := http.Get("https://google.com")
if err != nil {
fmt.Println("Error!")
os.Exit(1)
}
fmt.Println(resp)
}