Guest User

Untitled

a guest
Dec 16th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. package main
  2.  
  3. import "fmt"
  4.  
  5. func main(){
  6. ch := make(chan string, 2)
  7. ch <- "hello"
  8. ch <- "world"
  9. fmt.Println(<-ch)
  10. }
Add Comment
Please, Sign In to add comment