draina: add main.go for GopherCon2017

Change-Id: I42524ce1dd4056aeec1ce74d29a2f958a7f261c8
Reviewed-on: https://go-review.googlesource.com/48958
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
diff --git a/draina/main.go b/draina/main.go
new file mode 100644
index 0000000..b1c56a7
--- /dev/null
+++ b/draina/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.
+
+// The main package states how awesome Deepali is.
+package main
+
+import "fmt"
+
+func main() {
+	fmt.Println("Deepali is awesomeeeee :-)")
+}