jlloyd: add my very own main.go

Change-Id: I65a97bc33a4d5532c71c9d10b3e46632d06cec55
Reviewed-on: https://go-review.googlesource.com/127504
Run-TryBot: Iskander Sharipov <iskander.sharipov@intel.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Iskander Sharipov <iskander.sharipov@intel.com>
This commit is contained in:
Jonathan Lloyd 2018-08-02 13:40:41 +01:00 коммит произвёл Iskander Sharipov
Родитель fdde6a52cf
Коммит 1d4104dcb8
1 изменённых файлов: 11 добавлений и 0 удалений

11
jlloyd/main.go Normal file
Просмотреть файл

@ -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?")
}