From 4d4fc9c9556f183d960499db08253a319fdd83d8 Mon Sep 17 00:00:00 2001 From: profraj1 <35667126+profraj1@users.noreply.github.com> Date: Sat, 17 Mar 2018 12:25:01 +0530 Subject: [PATCH] Create helloworld.go --- submissions/moxie/task1/helloworld.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 submissions/moxie/task1/helloworld.go diff --git a/submissions/moxie/task1/helloworld.go b/submissions/moxie/task1/helloworld.go new file mode 100644 index 0000000..91e7378 --- /dev/null +++ b/submissions/moxie/task1/helloworld.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello World") +}