wfernandes: add progam to print Roald Dhal quote

Change-Id: Ia42eda3668cfc6c10401a62c52545e23f802f252
Reviewed-on: https://go-review.googlesource.com/132258
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/wfernandes/main.go b/wfernandes/main.go
new file mode 100644
index 0000000..cf248d4
--- /dev/null
+++ b/wfernandes/main.go
@@ -0,0 +1,12 @@
+// 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(`"A little nonsense now and then, is cherished by the wisest men."
+--Roald Dhal`)
+}