From 4b91b3511b84a33c17ed5fff59e1a9dc5f4a85d3 Mon Sep 17 00:00:00 2001 From: thatlittlegit Date: Sun, 10 Jun 2018 10:01:23 -0400 Subject: [PATCH] Rename Go file --- GO | 9 --------- hello_world.go | 4 +++- 2 files changed, 3 insertions(+), 10 deletions(-) delete mode 100644 GO diff --git a/GO b/GO deleted file mode 100644 index 65412ab..0000000 --- a/GO +++ /dev/null @@ -1,9 +0,0 @@ -package main - -import "fmt" - -func main() { - fmt.Println("hello world") -} -//to run the program -$ go run hello-world.go diff --git a/hello_world.go b/hello_world.go index ebf1a2b..65412ab 100644 --- a/hello_world.go +++ b/hello_world.go @@ -3,5 +3,7 @@ package main import "fmt" func main() { - fmt.Println("hello world\n") + fmt.Println("hello world") } +//to run the program +$ go run hello-world.go