Skip to content

Instantly share code, notes, and snippets.

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