Change-Id: Ib20835aefe4c7c25f110aaf8e079f2d0b922f0f0
Reviewed-on: https://go-review.googlesource.com/c/scratch/+/191298
Run-TryBot: Daniel Martí <mvdan@mvdan.cc>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
This commit is contained in:
Michel Hollands 2019-08-22 10:52:59 +01:00 коммит произвёл Daniel Martí
Родитель 5e20e2a333
Коммит 05c2f33ca4
1 изменённых файлов: 11 добавлений и 0 удалений

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