From 1496350eb787ad79b7e5bb043a19c8681aeb1982 Mon Sep 17 00:00:00 2001 From: Tanisha Singh <50816819+TanishaSingh16@users.noreply.github.com> Date: Tue, 19 Nov 2019 14:02:21 +0530 Subject: [PATCH] Create hello.go --- hello.go | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hello.go diff --git a/hello.go b/hello.go new file mode 100644 index 0000000..f2482c1 --- /dev/null +++ b/hello.go @@ -0,0 +1,5 @@ +package main +import "fmt" +func main() { + fmt.Println("hello world") +}