scorphus: add main.go for GopherCon

Change-Id: I4400068fd6224ce0b7415c3620c4788ad3379563
Reviewed-on: https://go-review.googlesource.com/48727
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
diff --git a/scorphus/main.go b/scorphus/main.go
new file mode 100644
index 0000000..23b63a3
--- /dev/null
+++ b/scorphus/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("GopherCon 2017 has been my best conference ever! By far!")
+}