Skip to content

Instantly share code, notes, and snippets.

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