diff --git a/README.md b/README.md new file mode 100644 index 0000000..a6e21ca --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# Hello Go + +```bash +go run hello-world.go +``` + +Prints: `Hello World` + +--- + +```bash +go run hello-world-server.go +``` + +Launches a webserver + diff --git a/go/README.md b/go/README.md deleted file mode 100644 index 4fa2823..0000000 --- a/go/README.md +++ /dev/null @@ -1,6 +0,0 @@ -# Hello (World) Learning - -A place for me to play around with some basic example apps, most commonly "Hello World"'s and "TODO" examples. - -**Each language/framework is broken down by branch.** - diff --git a/go/hello-world-server.go b/hello-world-server.go similarity index 100% rename from go/hello-world-server.go rename to hello-world-server.go diff --git a/go/hello-world.go b/hello-world.go similarity index 100% rename from go/hello-world.go rename to hello-world.go