ottogiron: add main.go for gophercon

Change-Id: I28efb8273e3689785115fb991e42338449fff817
Reviewed-on: https://go-review.googlesource.com/48975
Reviewed-by: Jessie Frazelle <me@jessfraz.com>
This commit is contained in:
Otto Giron 2017-07-15 14:13:26 -06:00 коммит произвёл Brad Fitzpatrick
Родитель 5d3fd457b4
Коммит 75e6177514
1 изменённых файлов: 12 добавлений и 0 удалений

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

@ -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.
// This package contains a contribution for the scratch repository.
package main
import "fmt"
func main() {
fmt.Println("gophercon rule!")
}