box-o-sand/gotime/src/meatballhat.com/gotour-artifacts/buffered-channels/main.go

12 lines
135 B
Go
Raw Normal View History

2012-11-07 05:16:13 +00:00
package main
import "fmt"
func main() {
c := make(chan int, 2)
c <- 1
c <- 2
fmt.Println(<-c)
fmt.Println(<-c)
}