From 68ee445d5dc56fce8337851a86d523cd78d44925 Mon Sep 17 00:00:00 2001 From: Wesley Hill Date: Wed, 20 Jun 2018 19:37:12 +0100 Subject: [PATCH] whill: adding main.go to scratch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I3caf09092b1f60268c5e45162daf1194183900cb Reviewed-on: https://go-review.googlesource.com/120131 Reviewed-by: Iskander Sharipov Run-TryBot: Daniel Martí TryBot-Result: Gobot Gobot --- whill/main.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 whill/main.go diff --git a/whill/main.go b/whill/main.go new file mode 100644 index 0000000..ecd545f --- /dev/null +++ b/whill/main.go @@ -0,0 +1,11 @@ +// 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("who even needs fmt?") +}