tommie: add my very own main.go

Change-Id: I50c03d193c25d3e7942b8e2d5030d53dd2d4b7cb
Reviewed-on: https://go-review.googlesource.com/127514
Run-TryBot: Michael Munday <mike.munday@ibm.com>
Run-TryBot: Iskander Sharipov <iskander.sharipov@intel.com>
Reviewed-by: Iskander Sharipov <iskander.sharipov@intel.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
diff --git a/tommie/main.go b/tommie/main.go
new file mode 100644
index 0000000..9d6c6aa
--- /dev/null
+++ b/tommie/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 GopherCon UK!")
+}