about summary refs log tree commit diff
path: root/templates/go/main.go
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-02-21 12:55:28 -0800
committerFranck Cuny <franck@fcuny.net>2023-02-21 12:59:13 -0800
commitd6971f6d7a03142ea6e391d7c37532b3aa4792e7 (patch)
treef60d9d3fcdd37075bc81b9a1116afa7ce74d286d /templates/go/main.go
parentfeat(home/fish): move fish's code to external files (diff)
downloadworld-d6971f6d7a03142ea6e391d7c37532b3aa4792e7.tar.gz
feat(templates/go): add flake template for go projects
Diffstat (limited to '')
-rw-r--r--templates/go/main.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/go/main.go b/templates/go/main.go
new file mode 100644
index 0000000..7776ec8
--- /dev/null
+++ b/templates/go/main.go
@@ -0,0 +1,7 @@
+package main
+
+import "fmt"
+
+func main() {
+	fmt.Println("hello world!")
+}