Skip to content

Instantly share code, notes, and snippets.

@elight
Created April 3, 2014 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elight/9961285 to your computer and use it in GitHub Desktop.
Save elight/9961285 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func sum(a []int, c chan int) {
sum := 0
for _, v := range a {
sum += v
}
c <- sum // send sum to c
}
func main() {
a := []int{7, 2, 8, -9, 4, 0}
c := make(chan int)
go sum(a[:len(a)/2], c)
go sum(a[len(a)/2:], c)
x, y := <-c, <-c // receive from c
fmt.Println(x, y, x+y)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment