Skip to content

Instantly share code, notes, and snippets.

@ceaksan
Created March 9, 2018 12:34
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 ceaksan/78ea173b7936d2b7e1d67c5c7d45f886 to your computer and use it in GitHub Desktop.
Save ceaksan/78ea173b7936d2b7e1d67c5c7d45f886 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
}
fmt.Println(sum, c)
c <- sum
}
func main() {
a := []int{7, 2, 8, -8, 4, 0}
c := make(chan int)
go sum(a[:len(a)/2], c)
go sum(a[len(a)/2:], c)
x, y := <-c, <-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