Skip to content

Instantly share code, notes, and snippets.

@sahajre
Created August 1, 2019 07:55
Show Gist options
  • Save sahajre/29bd9ef486da6a79af45c6e8e1532a2f to your computer and use it in GitHub Desktop.
Save sahajre/29bd9ef486da6a79af45c6e8e1532a2f to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
ch := make(chan string)
go func() {
ch <- "Hello, 世界"
}()
fmt.Println(<-ch)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment