Skip to content

Instantly share code, notes, and snippets.

@maxk42
Created May 10, 2018 19:43
Show Gist options
  • Save maxk42/2010467c701bdeb26da047a02166727b to your computer and use it in GitHub Desktop.
Save maxk42/2010467c701bdeb26da047a02166727b to your computer and use it in GitHub Desktop.
Tiny "Hello World" server in go with no dependencies except net/http
package main
import "net/http"
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r * http.Request) {
w.Write([]byte("Hello, World!\n"))
})
http.ListenAndServe(":80", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment