Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
gop / usr / lib / gop / printer / _testdata / 28-Chan / chan.gop
Size: Mime:
c := make(chan int, 10)
c <- 3
close(c)

d := <-c
e, ok := <-c

println(d)
println(e, ok)