Files
workshops/slides/go/server.go
2026-03-02 01:47:42 +01:00

21 lines
234 B
Go

//go:build exclude
package main
import (
"net/http"
)
func main() {
// web server
http.HandleFunc("/", a )
http.ListenAndServe(":8080", nil)
}
func a(w http.ResponseWriter, r *http.Request){
w.Write([]byte("Hello Web"))
}