carlisia: add a go program for gophercon

Change-Id: Iac0e4ac13812cf470e878851736a6127884beac8
Reviewed-on: https://go-review.googlesource.com/48720
Reviewed-by: Chris Broadfoot <cbro@golang.org>
Run-TryBot: Chris Broadfoot <cbro@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
diff --git a/carlisia/hello.txt b/carlisia/hello.txt
new file mode 100644
index 0000000..8c18171
--- /dev/null
+++ b/carlisia/hello.txt
@@ -0,0 +1 @@
+Good morning!
\ No newline at end of file
diff --git a/carlisia/main.go b/carlisia/main.go
new file mode 100644
index 0000000..4c099ac
--- /dev/null
+++ b/carlisia/main.go
@@ -0,0 +1,12 @@
+// 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"
+
+const greeting = "Today is a great day!"
+
+func main() {
+	fmt.Println("What's happening?", greeting)
+}