maerf0x0: add example printing program for Gophercon 2018

Change-Id: I9f61a1a0f2e6ee3ed25d5aa810166690dc211ec4
Reviewed-on: https://go-review.googlesource.com/132322
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/maerf0x0/main.go b/maerf0x0/main.go
new file mode 100644
index 0000000..4169d86
--- /dev/null
+++ b/maerf0x0/main.go
@@ -0,0 +1,15 @@
+// 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() {
+	license := `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.
+`
+	fmt.Println(license)
+}