Article Outline
Go programming example 'golang-erver'
golang-erver
Golang beginners example: golang-erver
package main
import (
"net/http"
)
func main() {
http.Handle("/", http.FileServer(http.Dir("./")))
http.ListenAndServe(":8080", nil)
}
Useful links
- Learn Go: https://golangr.com
- Download Go: https://golang.org