From 3037051a1da1669b086b0fbd76b0a7b527a58823 Mon Sep 17 00:00:00 2001 From: Adam Ostor Date: Wed, 20 Jun 2018 19:38:48 +0100 Subject: [PATCH] adamo: adding my hello world with import This is the longer description for this very first try fixes #nothing Change-Id: I31a7ae34a69a2c33881dd4d4e1e7db83218b580c Reviewed-on: https://go-review.googlesource.com/120133 Reviewed-by: Johan Brandhorst Reviewed-by: Iskander Sharipov Run-TryBot: Iskander Sharipov TryBot-Result: Gobot Gobot --- adamo/main.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 adamo/main.go diff --git a/adamo/main.go b/adamo/main.go new file mode 100644 index 0000000..ecd545f --- /dev/null +++ b/adamo/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?") +}