From a743ad764b7a77dbce38e484e3a1c21e3337b5a9 Mon Sep 17 00:00:00 2001 From: montiiabby <36301730+montiiabby@users.noreply.github.com> Date: Sat, 17 Mar 2018 12:24:53 +0530 Subject: [PATCH] Create helloworld.go --- sumissions/moxie/task1/helloworld.go | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 sumissions/moxie/task1/helloworld.go diff --git a/sumissions/moxie/task1/helloworld.go b/sumissions/moxie/task1/helloworld.go new file mode 100644 index 0000000..f2482c1 --- /dev/null +++ b/sumissions/moxie/task1/helloworld.go @@ -0,0 +1,5 @@ +package main +import "fmt" +func main() { + fmt.Println("hello world") +}