From b1747051e2ef681b57f421a0265759c30ba7ae98 Mon Sep 17 00:00:00 2001 From: Sutton Yamanashi Date: Sat, 15 Jul 2017 14:08:08 -0600 Subject: [PATCH] suttonjesse: add main.go for gophercon with greet Change-Id: I61b31329779ccdd2144bf08e0beb556df6b31be3 Reviewed-on: https://go-review.googlesource.com/48955 Reviewed-by: Kevin Burke --- suttonjesse/main.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 suttonjesse/main.go diff --git a/suttonjesse/main.go b/suttonjesse/main.go new file mode 100644 index 0000000..673369a --- /dev/null +++ b/suttonjesse/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("Konnichi wa, yo!") +}