github.com/epfl-dcsl/gotee@v0.0.0-20200909122901-014b35f5e5e9/example/hello-world/src/hw/impl.go (about)

     1  package hw
     2  
     3  import "fmt"
     4  
     5  func HelloWorld(done chan bool) {
     6  	fmt.Println("Hello World!")
     7  	done <- true
     8  }