pbathala: add main.go for Gophercon 2018

Change-Id: I789edae1af38fb50b62e12467cd2f39573e0ccc8
Reviewed-on: https://go-review.googlesource.com/132298
Reviewed-by: Michael Matloob <matloob@golang.org>
This commit is contained in:
Praveen Bathala 2018-08-30 12:34:22 -06:00 коммит произвёл Michael Matloob
Родитель d608d3b127
Коммит 792836b690
1 изменённых файлов: 12 добавлений и 0 удалений

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

@ -0,0 +1,12 @@
// Copyright 2018 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 change is for GopherCon 2018")
fmt.Println("More changes for GopherCon")
}