diff --git a/go/README.md b/README.md similarity index 100% rename from go/README.md rename to README.md diff --git a/go/hello-world-server.go b/go/hello-world-server.go deleted file mode 100644 index caaf14c..0000000 --- a/go/hello-world-server.go +++ /dev/null @@ -1,16 +0,0 @@ -package main - -import ( - "fmt" - "net/http" -) - -func main() { - http.HandleFunc("/", homepage) - fmt.Println("Server is running on http://localhost:8081") - http.ListenAndServe(":8081", nil) -} - -func homepage(w http.ResponseWriter, r *http.Request) { - fmt.Fprintf(w, "

Hello World

") -} diff --git a/go/hello-world.go b/go/hello-world.go deleted file mode 100644 index b1b14d0..0000000 --- a/go/hello-world.go +++ /dev/null @@ -1,7 +0,0 @@ -package main - -import "fmt" - -func main() { - fmt.Println("Hello World!") -}