Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dumindu/60a61adf5a7fe62a23a015365f3699f9 to your computer and use it in GitHub Desktop.
Save dumindu/60a61adf5a7fe62a23a015365f3699f9 to your computer and use it in GitHub Desktop.
package main
import "fmt"
var ch = make(chan string)
func main() {
go write()
fmt.Println(<-ch)
}
func write() {
ch <- "Hello world!"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment