summary refs log tree commit diff stats
path: root/go
diff options
context:
space:
mode:
Diffstat (limited to 'go')
-rw-r--r--go/go.mod3
-rw-r--r--go/main.go9
2 files changed, 12 insertions, 0 deletions
diff --git a/go/go.mod b/go/go.mod
new file mode 100644
index 0000000..6bd6170
--- /dev/null
+++ b/go/go.mod
@@ -0,0 +1,3 @@
+module gt.kalli.st/novaburst/help
+
+go 1.18
diff --git a/go/main.go b/go/main.go
new file mode 100644
index 0000000..7167706
--- /dev/null
+++ b/go/main.go
@@ -0,0 +1,9 @@
+package main
+
+import (
+	"fmt"
+)
+
+func main() {
+	fmt.Printf("would you mind reading the fucking manual pages?\n")
+}