emasatsugu: add tool to print 'emasatsugu'

Change-Id: I05a9cabdd05cbb9ebce6abe10eaa14a5248c1358
Reviewed-on: https://go-review.googlesource.com/132297
Reviewed-by: Bryan C. Mills <bcmills@google.com>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Erin Masatsugu 2018-08-30 18:07:06 +00:00 коммит произвёл Ian Lance Taylor
Родитель 205311ee34
Коммит 6a0963e396
1 изменённых файлов: 12 добавлений и 0 удалений

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

@ -0,0 +1,12 @@
// 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.
// emasatsugu prints the author's username.
package main
import "fmt"
func main() {
fmt.Println("emasatsugu")
}