summary refs log tree commit diff stats
diff options
context:
space:
mode:
authoraob <aob@tilde.institute>2020-08-21 21:20:22 -0400
committeraob <aob@tilde.institute>2020-08-21 21:20:22 -0400
commitd9db4e639eeda6d291234f63e3212d9841c6388d (patch)
tree99c4db7f7f3cb4449e9cecafb175aaaf92b3dfc2
downloadhi-d9db4e639eeda6d291234f63e3212d9841c6388d.tar.gz
initial commit
-rw-r--r--main.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..cfa2853
--- /dev/null
+++ b/main.go
@@ -0,0 +1,12 @@
+// package hello says hello.
+package hello
+
+import (
+	"fmt"
+)
+
+// Hello says hello.
+func Hello() {
+	fmt.Println("Hello")
+}
+