Main file

This commit is contained in:
Mitchell Hashimoto 2013-03-22 23:00:23 -07:00
parent a6fd711185
commit 4174c5f2f2
1 changed files with 8 additions and 0 deletions

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.")
}