blainsmith: add main.go for Gophercon Go Contributor Workshop

Change-Id: Ie699b3c3e553cd1b0d1e827a3d28be7bee9f5bf6
Reviewed-on: https://go-review.googlesource.com/48830
Reviewed-by: Chris Broadfoot <cbro@golang.org>
Reviewed-by: Kevin Burke <kev@inburke.com>
Run-TryBot: Chris Broadfoot <cbro@golang.org>
diff --git a/blainsmith/main.go b/blainsmith/main.go
new file mode 100644
index 0000000..c7a3d18
--- /dev/null
+++ b/blainsmith/main.go
@@ -0,0 +1,11 @@
+// Copyright 2017 Google Inc. All rights reserved.
+// Use of this source code is governed by the Apache 2.0
+// license that can be found in the LICENSE file.
+
+package main
+
+import "fmt"
+
+func main() {
+	fmt.Println(`\m/`)
+}