rabellamy: adds hello world program

Change-Id: I22ccb955afb91ca50bd7352b88a6b63989f2fc50
Reviewed-on: https://go-review.googlesource.com/132274
Reviewed-by: Kevin Burke <kev@inburke.com>
Run-TryBot: Kevin Burke <kev@inburke.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
diff --git a/rabellamy/main.go b/rabellamy/main.go
new file mode 100644
index 0000000..52cac4d
--- /dev/null
+++ b/rabellamy/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("hello!")
+}