最近在学习go语言,积累一些简短的代码,看着好爽
package main import ( "fmt" "net/http" ) type HelloWorld struct{} func (h *HelloWorld) ServeHTTP(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "hello world!!!") } func main() { var h HelloWorld http.ListenAndServe("localhost:4000", &h) }
有疑问加站长微信联系(非本文作者)