From 7e103cba7c2be378132ba80b4720219e58d7a34f Mon Sep 17 00:00:00 2001 From: Jade Auer Date: Sat, 15 Jul 2017 11:11:13 -0600 Subject: [PATCH] jda/main: hello, world! and gophercon Change-Id: I054d24117938a50d6ea98d72f04e02521f020c65 Reviewed-on: https://go-review.googlesource.com/48713 Reviewed-by: Chris Broadfoot Run-TryBot: Chris Broadfoot TryBot-Result: Gobot Gobot --- jda/main.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 jda/main.go diff --git a/jda/main.go b/jda/main.go new file mode 100644 index 0000000..cea3462 --- /dev/null +++ b/jda/main.go @@ -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.") +}