Main file

This commit is contained in:
Mitchell Hashimoto 2013-03-22 23:00:23 -07:00
parent a6fd711185
commit 4174c5f2f2

8
packer.go Normal file
View file

@ -0,0 +1,8 @@
// This is the main package for the `packer` application.
package main
import "fmt"
func main() {
fmt.Println("Hello, world.")
}