Skip to content

Instantly share code, notes, and snippets.

@jamal
Created September 25, 2017 20:19
Show Gist options
  • Save jamal/4c93c2ccf1b28c1bbe3e2eb935280c91 to your computer and use it in GitHub Desktop.
Save jamal/4c93c2ccf1b28c1bbe3e2eb935280c91 to your computer and use it in GitHub Desktop.
package main
import "net"
func main() {
c, err := net.Dial("tcp", "google.com:80")
if err != nil {
panic(err)
}
c.Close()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment