Created
April 3, 2014 19:36
-
-
Save elight/9961285 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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