liam: my own main.go in scratch which uses the fmt package.

Change-Id: Idb8481b3be639c4b1c58dc61412d6a3dd9d9241c
Reviewed-on: https://go-review.googlesource.com/120114
Reviewed-by: Wayne Ashley Berry <wayneashleyberry@gmail.com>
Reviewed-by: Paul Jolly <paul@myitcv.org.uk>
diff --git a/liam/main.go b/liam/main.go
new file mode 100644
index 0000000..ecd545f
--- /dev/null
+++ b/liam/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("who even needs fmt?")
+}