baylee: hello world program for GopherCon 2018

Change-Id: Ib30538ca5a928984fc6e31a5dee27a2a43bdcc39
Reviewed-on: https://go-review.googlesource.com/132296
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
diff --git a/baylee/main.go b/baylee/main.go
new file mode 100644
index 0000000..31f6199
--- /dev/null
+++ b/baylee/main.go
@@ -0,0 +1,11 @@
+// Copyright 2018 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("baylee is the master of the universe!")
+}