Use a GOPATH workspace format

pull/15/head
Mitchell Hashimoto 13 years ago
parent 4174c5f2f2
commit 1748ca31f6

2
.gitignore vendored

@ -1 +1 @@
/packer
/bin

@ -0,0 +1,9 @@
{
"name": "ubuntu-12.04.2-server-amd64",
"builders": [
"virtualbox": {
"os_type": "Ubuntu_64",
}
]
}

@ -1,8 +1,12 @@
// This is the main package for the `packer` application.
package main
import "fmt"
import (
"fmt"
"os"
)
func main() {
fmt.Printf("%#v\n", os.Args)
fmt.Println("Hello, world.")
}
Loading…
Cancel
Save