From 6ea554dd4f61f8246ab626667fb1c675b27a3b10 Mon Sep 17 00:00:00 2001 From: Ruan Bekker Date: Thu, 18 Apr 2019 14:41:38 +0200 Subject: [PATCH] Create main.go --- main.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 main.go diff --git a/main.go b/main.go new file mode 100644 index 0000000..5dbcb10 --- /dev/null +++ b/main.go @@ -0,0 +1,12 @@ +package main + +import "fmt" + +func main() { + fmt.Println(HelloWorld()) +} + +// HelloWorld is a function that returns a string containing "hello world" +func HelloWorld() string { + return "hello, world" +}