From 75e61775145be1fe4a6f8a17445771256e7b70d5 Mon Sep 17 00:00:00 2001 From: Otto Giron Date: Sat, 15 Jul 2017 14:13:26 -0600 Subject: [PATCH] ottogiron: add main.go for gophercon Change-Id: I28efb8273e3689785115fb991e42338449fff817 Reviewed-on: https://go-review.googlesource.com/48975 Reviewed-by: Jessie Frazelle --- ottogiron/main.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ottogiron/main.go diff --git a/ottogiron/main.go b/ottogiron/main.go new file mode 100644 index 0000000..a97df2e --- /dev/null +++ b/ottogiron/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. + +// This package contains a contribution for the scratch repository. +package main + +import "fmt" + +func main() { + fmt.Println("gophercon rule!") +}