]> Git Repo - binutils.git/blob - gdb/testsuite/gdb.go/chan.go
Automatic date update in version.in
[binutils.git] / gdb / testsuite / gdb.go / chan.go
1 package main
2
3 import "fmt"
4
5 func generate() chan int {
6     ch := make(chan int)
7     go func() {
8         for i := 0; ; i++ {
9             ch <- i // set breakpoint 1 here
10         }
11     }()
12     return ch
13 }
14
15 func main() {
16     integers := generate()
17     for i := 0; i < 100; i++ { // Print the first hundred integers.
18         fmt.Println(<-integers) // set breakpoint 2 here
19     }
20 }
This page took 0.025141 seconds and 4 git commands to generate.