whill: adding main.go to scratch

Change-Id: I3caf09092b1f60268c5e45162daf1194183900cb
Reviewed-on: https://go-review.googlesource.com/120131
Reviewed-by: Iskander Sharipov <iskander.sharipov@intel.com>
Run-TryBot: Daniel Martí <mvdan@mvdan.cc>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Wesley Hill 2018-06-20 19:37:12 +01:00 коммит произвёл Daniel Martí
Родитель adf58d393b
Коммит 68ee445d5d
1 изменённых файлов: 11 добавлений и 0 удалений

11
whill/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?")
}