pbathala: add main.go for Gophercon 2018

Change-Id: I789edae1af38fb50b62e12467cd2f39573e0ccc8
Reviewed-on: https://go-review.googlesource.com/132298
Reviewed-by: Michael Matloob <matloob@golang.org>
diff --git a/pbathala/main.go b/pbathala/main.go
new file mode 100644
index 0000000..fcfdc4f
--- /dev/null
+++ b/pbathala/main.go
@@ -0,0 +1,12 @@
+// 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("This change is for GopherCon 2018")
+	fmt.Println("More changes for GopherCon")
+}