jamesfcarter: add my very own main.go

Change-Id: I1c4f7a13eec7b6cc2f59f87142dd1aa14e5f8a10
Reviewed-on: https://go-review.googlesource.com/127535
Run-TryBot: roger peppe <rogpeppe@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: roger peppe <rogpeppe@gmail.com>
diff --git a/jamesfcarter/main.go b/jamesfcarter/main.go
new file mode 100644
index 0000000..2f9e594
--- /dev/null
+++ b/jamesfcarter/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(`jamesfcarter says "GO!"`)
+}