suttonjesse: add main.go for gophercon with greet

Change-Id: I61b31329779ccdd2144bf08e0beb556df6b31be3
Reviewed-on: https://go-review.googlesource.com/48955
Reviewed-by: Kevin Burke <kev@inburke.com>
This commit is contained in:
Sutton Yamanashi 2017-07-15 14:08:08 -06:00 коммит произвёл Kevin Burke
Родитель 28d0b908bc
Коммит b1747051e2
1 изменённых файлов: 11 добавлений и 0 удалений

11
suttonjesse/main.go Normal file
Просмотреть файл

@ -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!")
}