grepory: add main.go for gophercon

Change-Id: I47c01c7656e92b67c61a0bf5e640e0da95ae5af4
Reviewed-on: https://go-review.googlesource.com/48710
Reviewed-by: Jessica Frazelle <me@jessfraz.com>
This commit is contained in:
Greg Poirier 2017-07-15 11:04:54 -06:00 коммит произвёл Brad Fitzpatrick
Родитель 8e867c8ca2
Коммит b26bf9b832
1 изменённых файлов: 11 добавлений и 0 удалений

11
grepory/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("this is a fantastic contributor workflow.")
}