Skip to content

Instantly share code, notes, and snippets.

@souvikhaldar
Created January 31, 2019 16:47
Show Gist options
  • Save souvikhaldar/857d012f512b8065c77a881107728864 to your computer and use it in GitHub Desktop.
Save souvikhaldar/857d012f512b8065c77a881107728864 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
ch := make(chan int, 2)
ch <- 1
ch <- 2
ch <- 3
fmt.Println(<-ch)
fmt.Println(<-ch)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment