go-learning/tour_of_go/l7/channels.go

23 lines
343 B
Go
Raw Permalink Normal View History

2025-09-26 14:43:54 +00:00
package main
import "fmt"
func sum(s []int, c chan int) {
sum := 0
for _, v := range s {
sum += v
}
c <- sum // Send the sum into the channel
}
func main() {
s := []int{7, 2, 8, -8, 4, 0}
c := make(chan int)
go sum(s[:len(s)/2], c)
go sum(s[len(s)/2:], c)
x, y := <-c, <-c // Receive from the channel
fmt.Println(x, y, x+y)
}