jda/main: hello, world! and gophercon

Change-Id: I054d24117938a50d6ea98d72f04e02521f020c65
Reviewed-on: https://go-review.googlesource.com/48713
Reviewed-by: Chris Broadfoot <cbro@golang.org>
Run-TryBot: Chris Broadfoot <cbro@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Jade Auer 2017-07-15 11:11:13 -06:00 коммит произвёл Brad Fitzpatrick
Родитель bbc2830a7e
Коммит 7e103cba7c
1 изменённых файлов: 12 добавлений и 0 удалений

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

@ -0,0 +1,12 @@
// 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("Hello from Jade!")
fmt.Println("Gophercon was/is/will be amazing.")
}