From 2c2821ef1560903fd6aefdf4c821c3ed2047936c Mon Sep 17 00:00:00 2001 From: tetff Date: Tue, 23 Oct 2018 15:49:50 +0200 Subject: [PATCH] Tetff: add my very own main.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: If0e1d99eb87bf268384c3d11481b3f959edb85c3 Reviewed-on: https://go-review.googlesource.com/c/144166 Reviewed-by: Daniel Martí Run-TryBot: Daniel Martí TryBot-Result: Gobot Gobot --- tetff/main.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tetff/main.go diff --git a/tetff/main.go b/tetff/main.go new file mode 100644 index 0000000..ecd545f --- /dev/null +++ b/tetff/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?") +}