From 0d33aacf3ff4e0883533c24f1706cb8e749b7d84 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Mon, 19 Jun 2023 14:30:28 -0700 Subject: [PATCH] Initial hello world program. --- main.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 main.go diff --git a/main.go b/main.go new file mode 100644 index 0000000..5411621 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello World.") +}