Skip to content

Instantly share code, notes, and snippets.

@vkorbes
Created July 4, 2019 12:44
Show Gist options
  • Save vkorbes/4ee874d2e1a767e583d6d9baca23a29d to your computer and use it in GitHub Desktop.
Save vkorbes/4ee874d2e1a767e583d6d9baca23a29d to your computer and use it in GitHub Desktop.
func main() {
http.HandleFunc("/", webserver)
http.ListenAndServe(":8080", nil) // This blocks!
message := get() // Code never gets here.
fmt.Println("The webserver said:", message)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment