neosimsim: add own main

Change-Id: Ia5f65c83299a35cefb57a108fdefbf9f84890f8f
Reviewed-on: https://go-review.googlesource.com/112677
Reviewed-by: Kevin Burke <kev@inburke.com>
diff --git a/neosimsim/main.go b/neosimsim/main.go
new file mode 100644
index 0000000..9e90e0b
--- /dev/null
+++ b/neosimsim/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.
+
+package main
+
+import (
+	"fmt"
+)
+
+func main() {
+	fmt.Println("Hallo Welt!")
+}