pteichman: add main.go for Gophercon

Change-Id: I4902e8fcc1e490ac46c5cd50527ab294fa57a48d
Reviewed-on: https://go-review.googlesource.com/48657
Reviewed-by: Han-Wen Nienhuys <hanwen@google.com>
Run-TryBot: Han-Wen Nienhuys <hanwen@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
diff --git a/pteichman/main.go b/pteichman/main.go
new file mode 100644
index 0000000..1100d97
--- /dev/null
+++ b/pteichman/main.go
@@ -0,0 +1,11 @@
+// Copyright 2017 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, Gophers!")
+}