Hello world greeting exercise

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))

}

It looks like you wrote an HTTP server. The exercise asks you to write a library with a single non-main function. You may want to watch the intro video and/or reset the code back to the stub to see what the expected function signature looks like.

Make sure you read the tests to see what is expected of you.