bschoch: adding main.go

Change-Id: I07926a25e67a6ff08a9d9f24e43adc9bfe14fc83
Reviewed-on: https://go-review.googlesource.com/48864
Reviewed-by: Jessie Frazelle <me@jessfraz.com>
diff --git a/bschoch/main.go b/bschoch/main.go
new file mode 100644
index 0000000..b80b6c3
--- /dev/null
+++ b/bschoch/main.go
@@ -0,0 +1,11 @@
+// Copyright 2010 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")
+}