sselph: add main.go for Gophercon

Change-Id: I1c7f9afcdf2bf81abaf11c9eb7440a628e7a62d1
Reviewed-on: https://go-review.googlesource.com/48972
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
diff --git a/sselph/main.go b/sselph/main.go
new file mode 100644
index 0000000..98c1c6b
--- /dev/null
+++ b/sselph/main.go
@@ -0,0 +1,12 @@
+// 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.
+
+// The sselph command says hello to everyone at gophercon.
+package main
+
+import "fmt"
+
+func main() {
+	fmt.Println("Hello Gophercon!")
+}