lineufelipe: add lineufelipe/main.go

Change-Id: If03cbe7c75f7f61ee8ff53de4c68912c217527fe
Reviewed-on: https://go-review.googlesource.com/109155
Reviewed-by: Kevin Burke <kev@inburke.com>
This commit is contained in:
Lineu Felipe 2018-04-24 16:37:28 -03:00 коммит произвёл Kevin Burke
Родитель f8042e3e36
Коммит a4f069f856
1 изменённых файлов: 11 добавлений и 0 удалений

11
lineufelipe/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("Hello, I'm Lineu Felipe")
}