jonogould: add main.go

I was feeling left out, and needed to add my own greeting.
So I added a new main.go file under my username that prints a nice greeting.

Change-Id: I43983a214caa54598facf557488c6a28b4fd16e9
Reviewed-on: https://go-review.googlesource.com/117140
Reviewed-by: Michael Munday <mike.munday@ibm.com>
Run-TryBot: Michael Munday <mike.munday@ibm.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
diff --git a/jonogould/main.go b/jonogould/main.go
new file mode 100644
index 0000000..ee18b56
--- /dev/null
+++ b/jonogould/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.
+
+package main
+
+import (
+	"fmt"
+)
+
+func main() {
+	fmt.Println("Hello, from London 🇬🇧")
+}