venilnoronha: add a hello world program

Change-Id: Iff604d0bfd732f6d25da67bfec13a57fb0fd193e
Reviewed-on: https://go-review.googlesource.com/132295
Reviewed-by: Ian Lance Taylor <iant@golang.org>
diff --git a/venilnoronha/main.go b/venilnoronha/main.go
new file mode 100644
index 0000000..3d5c10f
--- /dev/null
+++ b/venilnoronha/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, GopherCon 2018!")
+}