summary refs log tree commit diff stats
path: root/go
diff options
context:
space:
mode:
authorAoi Koizumi (古泉 あおい) <novaburst@kalli.st>2022-05-25 02:59:56 +0000
committerAoi Koizumi (古泉 あおい) <novaburst@kalli.st>2022-05-25 02:59:56 +0000
commit93fe9b33cf75afa67e5a361065357e2ce6f7cb36 (patch)
tree5a888df6c4426797ab79594974025b00a501a2c6 /go
parent16f3f517c2cec05412b7ca86ee7e4b2f64ac5cc9 (diff)
downloadhelp-93fe9b33cf75afa67e5a361065357e2ce6f7cb36.tar.gz
moved go files to its own subdir
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")
+}