From b87ccabca31cc62b9495d912f8e03a8ec587b452 Mon Sep 17 00:00:00 2001 From: Joe Wroten Date: Fri, 21 Jun 2019 12:30:24 -0500 Subject: [PATCH] Go Hello Worlds Branch --- README.md | 16 ++++++++++++++++ go/README.md | 6 ------ ...ello-world-server.go => hello-world-server.go | 0 go/hello-world.go => hello-world.go | 0 4 files changed, 16 insertions(+), 6 deletions(-) create mode 100644 README.md delete mode 100644 go/README.md rename go/hello-world-server.go => hello-world-server.go (100%) rename go/hello-world.go => hello-world.go (100%) 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