jcbwlkr: add main.go for Gophercon workshop

Change-Id: Icce187518137e58828e258e9e55e7a956d3ac6d9
Reviewed-on: https://go-review.googlesource.com/48896
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Jacob Walker 2017-07-15 13:53:39 -06:00 коммит произвёл Brad Fitzpatrick
Родитель 91ed4865f0
Коммит 2136ea2ac8
1 изменённых файлов: 13 добавлений и 0 удалений

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

@ -0,0 +1,13 @@
// 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() {
for i := 0; i < 11; i++ {
fmt.Println("Hello, Gerrit!")
}
}