summaryrefslogtreecommitdiff
path: root/go/cmd/hello-world/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/cmd/hello-world/main.go')
-rw-r--r--go/cmd/hello-world/main.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/go/cmd/hello-world/main.go b/go/cmd/hello-world/main.go
new file mode 100644
index 0000000..7e34983
--- /dev/null
+++ b/go/cmd/hello-world/main.go
@@ -0,0 +1,12 @@
+package main
+
+import (
+ "fmt"
+
+ // Example import, just to see if govendor is working for us
+ _ "gitlab.com/gitlab-org/gitaly-proto/go"
+)
+
+func main() {
+ fmt.Println("Hello, world!")
+}