From 3c3507f3c3142f1eb6bfb58179951fc2afb7f5f5 Mon Sep 17 00:00:00 2001 From: Jean-Marc MEESSEN Date: Tue, 26 May 2020 22:45:46 +0200 Subject: [PATCH] Adding helloWorld to test environment --- src/helloWorld/helloWorld.go | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/helloWorld/helloWorld.go diff --git a/src/helloWorld/helloWorld.go b/src/helloWorld/helloWorld.go new file mode 100644 index 0000000..4734979 --- /dev/null +++ b/src/helloWorld/helloWorld.go @@ -0,0 +1,5 @@ +package main +import "fmt" +func main() { + fmt.Println("hello world") +} \ No newline at end of file