devalshah88: add a package that prints gophercon!

Change-Id: I6b56a8fd39e0f23dea2526d431aaf950159ccbfb
Reviewed-on: https://go-review.googlesource.com/132321
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/devalshah88/main.go b/devalshah88/main.go
new file mode 100644
index 0000000..54b2b8e
--- /dev/null
+++ b/devalshah88/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("gophercon!")
+}