github.com/cloudfoundry-attic/garden-linux@v0.333.2-candidate/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  }