thoeni: testing scratch in preparation of Go Contrib Workshop

Change-Id: I3a4161bacb57ae08a203231e73b9c2abd59fc2e7
Reviewed-on: https://go-review.googlesource.com/117139
Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
Run-TryBot: Daniel Martí <mvdan@mvdan.cc>
TryBot-Result: Gobot Gobot <gobot@golang.org>
diff --git a/thoeni/main.go b/thoeni/main.go
new file mode 100644
index 0000000..b311d15
--- /dev/null
+++ b/thoeni/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 thoeni
+
+import "fmt"
+
+func main() {
+	fmt.Println("Hello Go, this should succeed")
+}