aschlesener: add main.go for Gophercon

Change-Id: If46d7cf66c4e8d963024deaa57b205e20b7eadf9
Reviewed-on: https://go-review.googlesource.com/48970
Reviewed-by: Jessie Frazelle <me@jessfraz.com>
This commit is contained in:
Amy Schlesener 2017-07-15 14:01:01 -06:00 коммит произвёл Brad Fitzpatrick
Родитель 4c301863f2
Коммит 2f51d1176c
1 изменённых файлов: 12 добавлений и 0 удалений

12
aschlesener/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.
// The aschlesener command prints something amazing.
package main
import "fmt"
func main() {
fmt.Println("my first Go contribution :D")
}