theflyingcoder: Added main.go for GopherCon Change-Id: I2043c6b4984aefa8cbb1eae197213be0dc8bdcc9 Reviewed-on: https://go-review.googlesource.com/132302 Reviewed-by: Tuo Shan <shantuo@google.com>
diff --git a/lucas/main.go b/lucas/main.go new file mode 100644 index 0000000..52cac4d --- /dev/null +++ b/lucas/main.go
@@ -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!") +}