3
GO LANG WRITING WEB APPLICATIONS

Go Language by Google

Embed Size (px)

Citation preview

Page 1: Go Language by Google

GO LANGWRITING WEB APPLICATIONS

Page 2: Go Language by Google

TEST.GO

package mainimport ( "fmt" "net/http")func handler(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:])}func main() { http.HandleFunc("/", handler) http.ListenAndServe(":8080", nil)}

Page 3: Go Language by Google

COMPILE & RUN

go build test.go test