mirror of
https://github.com/vbatts/talks.git
synced 2025-05-24 05:42:32 +00:00
2015-devnation: copying devconf talk
This commit is contained in:
parent
5149d7ec5e
commit
65363d37c3
18 changed files with 482 additions and 0 deletions
16
2015/06-devnation-golang-good-bad-ugly/ugly0.go
Normal file
16
2015/06-devnation-golang-good-bad-ugly/ugly0.go
Normal file
|
@ -0,0 +1,16 @@
|
|||
// +build ignore
|
||||
|
||||
package main
|
||||
|
||||
func main() {
|
||||
// START1 OMIT
|
||||
c := make(chan int)
|
||||
go func() {
|
||||
for i := 0; i < 10; i++ {
|
||||
c <- i
|
||||
}
|
||||
close(c)
|
||||
}()
|
||||
println(<-c)
|
||||
// STOP1 OMIT
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue