Skip to content

Instantly share code, notes, and snippets.

View meisheep's full-sized avatar

Jared (Meng Hsun) Yang meisheep

View GitHub Profile
package main
import (
"fmt"
"net/http"
)
// hello world, the web server
func HelloServer(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello, world!")