github.com/schwarzm/garden-linux@v0.0.0-20150507151835-33bca2147c47/packer/rootfs/empty/hello.go (about) 1 package main 2 3 import ( 4 "fmt" 5 "os" 6 ) 7 8 func main() { 9 fmt.Fprint(os.Stdout, "hello from stdout") 10 fmt.Fprint(os.Stderr, "hello from stderr") 11 }