In the Go function ```go func Error(w ResponseWriter, error string, code int) ``` , we can replace ```go fmt.Fprintln(w, error) ``` with ```go w.Write([]byte(error+"\n")) ``` to reduce stack occupation and improve speed.