GoRoutines
go f(x, y, z) //starts goroutine running f(x,y,z)Channels
ch <- v // Send v to channel ch.
v := <-ch // Receive from ch, and
// assign value to v.ch := make(chan int)Sum Example
package main
import "fmt"
func sum(s []int, c chan int) {
sum := 0
for _, v := range s {
sum += v
}
c <- sum // send sum to c
}
func main() {
s := []int{7, 2, 8, -9, 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 c
fmt.Println(x, y, x+y)
}Last updated