gsg: print silly things

It has been reported a distinctively low number of "Hello, world" commits, at
about a dozen. This commit increments that counter by one by adding a new "hello
world" type message under gsg.

Change-Id: Ic1aa386eebb4165ac2535ae2f7ef9e1c44d29b7f
Reviewed-on: https://go-review.googlesource.com/120110
Reviewed-by: Michael Munday <mike.munday@ibm.com>
diff --git a/gsg/main.go b/gsg/main.go
new file mode 100644
index 0000000..675c540
--- /dev/null
+++ b/gsg/main.go
@@ -0,0 +1,13 @@
+// Copyright 2018 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file
+
+// main prints silly things
+
+package main
+
+import "fmt"
+
+func main() {
+	fmt.Println("👌")
+}