grantseltzer: add main.go for Gophercon

Change-Id: I00dd1d941d28682d33db888f9997fade686e3e93
Signed-off-by: grantseltzer <grantseltzer@gmail.com>
Reviewed-on: https://go-review.googlesource.com/48781
Reviewed-by: Jessica Frazelle <me@jessfraz.com>
diff --git a/grantseltzer/main.go b/grantseltzer/main.go
new file mode 100644
index 0000000..b908dfa
--- /dev/null
+++ b/grantseltzer/main.go
@@ -0,0 +1,14 @@
+// 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"
+	"time"
+)
+
+func main() {
+	fmt.Printf("%d is the year of linux on the desktop\n", time.Now().Year())
+}