mayra-cabrera: Add main.go file

For Gophercon contributing workshop

Change-Id: I7f804551ef9ae489e65ee7bfa89beef29b505c45
Reviewed-on: https://go-review.googlesource.com/48956
Reviewed-by: Kevin Burke <kev@inburke.com>
diff --git a/mayra-cabrera/main.go b/mayra-cabrera/main.go
new file mode 100644
index 0000000..db81400
--- /dev/null
+++ b/mayra-cabrera/main.go
@@ -0,0 +1,12 @@
+// 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"
+
+func main() {
+	fmt.Println("Cats will rule the world!")
+	fmt.Println("Gophercon: Best conference ever!")
+}