sandipb: adding a small cli for Gophercon
Using log instead of fmt.Printf.
Change-Id: I52db83ba30ec14af57ea06de79b0f0db286464e5
Reviewed-on: https://go-review.googlesource.com/132268
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
diff --git a/sandipb/main.go b/sandipb/main.go
new file mode 100644
index 0000000..f8c2036
--- /dev/null
+++ b/sandipb/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 "log"
+
+func main() {
+ log.Printf("Hello Gophercon @Denver!\n")
+}