From 69bfc871b2762f11cc43aae6c14861a868317e21 Mon Sep 17 00:00:00 2001 From: Dan Richards Date: Thu, 2 Aug 2018 13:40:34 +0100 Subject: [PATCH] danmrichards: add my very own main.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Id1d3e55ef35ca35e276d89e4ea6a74f83813535d Reviewed-on: https://go-review.googlesource.com/127505 Run-TryBot: Daniel Martí TryBot-Result: Gobot Gobot Reviewed-by: Daniel Martí --- danmrichards/main.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 danmrichards/main.go diff --git a/danmrichards/main.go b/danmrichards/main.go new file mode 100644 index 0000000..ecd545f --- /dev/null +++ b/danmrichards/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?") +}