robbawebba: add program to greet fellow gophers

Change-Id: I83583bf66af05c736978b18e3302331289154670
Reviewed-on: https://go-review.googlesource.com/132326
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Robert Weber 2018-08-30 11:35:15 -07:00 коммит произвёл Ian Lance Taylor
Родитель 878e5d9ff2
Коммит 8413ba4b41
1 изменённых файлов: 12 добавлений и 0 удалений

12
robbawebba/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.
// This package greets all of the fellow gophers.
package main
import "fmt"
func main() {
fmt.Println("Hello fellow gophers!")
}