From 73473e544867eee19685e41a787af25a4181878f Mon Sep 17 00:00:00 2001 From: amandhora Date: Sat, 15 Jul 2017 13:32:09 -0700 Subject: [PATCH] amandhora: added main.go for gophercon 2017 Change-Id: I69e4cce29c6c385c63bdca41a97fa3eb636e2aa3 Reviewed-on: https://go-review.googlesource.com/48986 Reviewed-by: Jessie Frazelle --- aman/main.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 aman/main.go diff --git a/aman/main.go b/aman/main.go new file mode 100644 index 0000000..9779223 --- /dev/null +++ b/aman/main.go @@ -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!") + +}