単純なHTTPのコード
main.go
package main
import (
"log"
"net/http"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request ) {
w.Write([]byte(`
<html><head><title>ちゃっと</title></head>
<body>ちゃっと</body>
</html>
`))
})
if err := http.ListenAndServe(":8080" , nil); err != nil {
log.Fatal("ListenAndServe:" , err)
}
}
実行する方法
$ go run main.go