Skip to content

Instantly share code, notes, and snippets.

@vkorbes
Created July 4, 2019 12:40
Show Gist options
  • Select an option

  • Save vkorbes/ca30b262a96c9454b938da5bf823e1c0 to your computer and use it in GitHub Desktop.

Select an option

Save vkorbes/ca30b262a96c9454b938da5bf823e1c0 to your computer and use it in GitHub Desktop.
(dlv) next
> main.main() ./main.go:11 (PC: 0x6fcb8f)
6: "io/ioutil"
7: "fmt"
8: )
9:
10: func main() {
=> 11: http.HandleFunc("/", webserver)
12: http.ListenAndServe(":8080", nil)
13: message := get()
14: fmt.Println("The webserver said:", message)
15: }
16:
(dlv)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment