scorphus: add main.go for GopherCon

Change-Id: I4400068fd6224ce0b7415c3620c4788ad3379563
Reviewed-on: https://go-review.googlesource.com/48727
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Pablo Santiago Blum de Aguiar 2017-07-15 11:16:11 -06:00 коммит произвёл Brad Fitzpatrick
Родитель 864fd5cac1
Коммит 35e32f86c4
1 изменённых файлов: 11 добавлений и 0 удалений

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

@ -0,0 +1,11 @@
// Copyright 2017 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("GopherCon 2017 has been my best conference ever! By far!")
}