go安装、下载、使用参见:菜鸟……
https://www.runoob.com/go/go-environment.html
go语言中文网:(go下载)
https://studygolang.com/dl
————————————————
静态网站代码:
//staticweb
package main
import (
"net/http"
)
func main() {
http.Handle("/", http.FileServer(http.Dir("F:/")))
http.ListenAndServe(":8080", nil)
}