hello world excercise not working on the excercism editior but working on my vscode
see my code below
package main
import (
“fmt”
"log"
"net/http"
)
func hello_wordhandler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, “Hello all! my name is clement hope am welcome here”)
}
func main() {
http.HandleFunc("/", hello_wordhandler)
log.Fatal(http.ListenAndServe(":8080", nil))
}