Skip to content

Instantly share code, notes, and snippets.

@horzu
Last active March 17, 2022 19:40
Show Gist options
  • Save horzu/441456bca8cec0fabe999d6bc3919b88 to your computer and use it in GitHub Desktop.
Save horzu/441456bca8cec0fabe999d6bc3919b88 to your computer and use it in GitHub Desktop.
channels-1
package main
import (
"fmt"
"time"
)
func main() {
c := make(chan string)
go counter("first", c)
msg := <- c
fmt.Println(msg)
}
func counter(rank string, c chan string) {
for i := 1; i <= 7; i++ {
c <- rank
time.Sleep(time.Second * 1)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment