From 74ccb144062f8eef41c898019d761c29bbf896b5 Mon Sep 17 00:00:00 2001 From: William Reid Date: Wed, 31 Oct 2018 17:57:25 -0400 Subject: [PATCH] Added a test file --- hello.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 hello.go diff --git a/hello.go b/hello.go new file mode 100644 index 0000000..17957ee --- /dev/null +++ b/hello.go @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Printf("hello, world\n") +}