From a2c0d67e6f74a8aaa5e57461527bbe5d39434836 Mon Sep 17 00:00:00 2001 From: David Finkel Date: Thu, 30 Aug 2018 14:32:48 -0400 Subject: [PATCH] dfinkel: add a printing example for GopherCon This commit adds a very useful tool, and it may or may not be live. Change-Id: I543c9a66cd65c66685c900262ef4133d11ba0baa Reviewed-on: https://go-review.googlesource.com/132324 Run-TryBot: Ian Lance Taylor TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- dfinkel/main.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 dfinkel/main.go diff --git a/dfinkel/main.go b/dfinkel/main.go new file mode 100644 index 0000000..007021e --- /dev/null +++ b/dfinkel/main.go @@ -0,0 +1,12 @@ +// Copyright 2018 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("Live from GopherCon, it's Thursday something!") + fmt.Println("Or, maybe not live anymore") +}