From 4174c5f2f200bb282dc0216ee25c343b1b598b85 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 22 Mar 2013 23:00:23 -0700 Subject: [PATCH] Main file --- packer.go | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 packer.go diff --git a/packer.go b/packer.go new file mode 100644 index 000000000..eecbddd7a --- /dev/null +++ b/packer.go @@ -0,0 +1,8 @@ +// This is the main package for the `packer` application. +package main + +import "fmt" + +func main() { + fmt.Println("Hello, world.") +}