darron: Adding main.go for Gophercon 2017.

Change-Id: I67fe2f9a987227c6541f6eb75b888d8a6f45a1d5
Reviewed-on: https://go-review.googlesource.com/48902
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
diff --git a/darron/main.go b/darron/main.go
new file mode 100644
index 0000000..12820a8
--- /dev/null
+++ b/darron/main.go
@@ -0,0 +1,11 @@
+// Copyright 2017 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("Golang is not Go.")
+}