amandhora: added main.go for gophercon 2017

Change-Id: I69e4cce29c6c385c63bdca41a97fa3eb636e2aa3
Reviewed-on: https://go-review.googlesource.com/48986
Reviewed-by: Jessie Frazelle <me@jessfraz.com>
This commit is contained in:
amandhora 2017-07-15 13:32:09 -07:00 коммит произвёл Ian Lance Taylor
Родитель ff5a3bb6ce
Коммит 73473e5448
1 изменённых файлов: 12 добавлений и 0 удалений

12
aman/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.
package main
import "fmt"
func main() {
fmt.Println("containers rule!")
}