Static Web Server in Go

package main

import "net/http"

func main() {
  http.ListenAndServe(":8000", http.FileServer(http.Dir("public")))
}