ianzapolsky: add a hello world program

Change-Id: Idb195c985d1e4546ef56a82fd5282852a1e8010f
Reviewed-on: https://go-review.googlesource.com/132266
Reviewed-by: Kevin Burke <kev@inburke.com>
Run-TryBot: Kevin Burke <kev@inburke.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
diff --git a/ianzapolsky/main.go b/ianzapolsky/main.go
new file mode 100644
index 0000000..dbdec60
--- /dev/null
+++ b/ianzapolsky/main.go
@@ -0,0 +1,13 @@
+// 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.
+
+// ianzapolsky is a simple hello world program for review purposes.
+package main
+
+import "fmt"
+
+func main() {
+	fmt.Println("Hello scratch!")
+	fmt.Println("this is a change!")
+}