LelecoNN
LelecoNN
[Playground](https://go.dev/play/p/4xAXszFZElk) ```go package main import "fmt" func main() { canal1 := make(chan int) canal2 := receber(canal1) imprime(canal2) //fmt.Println() } func receber(canal1 chan int)
[Playground](https://go.dev/play/p/0W9cYKW42s6) ```go package main import ( "fmt" "sync" ) func main() { c := make(chan int) f := muitoGougro(10, c) impr(f) } func muitoGougro(n int, c chan int)
[Playground](https://go.dev/play/p/tsJTineU5UR) ```go package main import ( "fmt" ) func main() { c :=make(chan int) go gen(c) receive(c) fmt.Println("about to exit") } func gen(c chan int)
[Playground](https://go.dev/play/p/kqJxs7RahG6) ```go package main import ( "fmt" ) func main() { c := make(chan int) go func() { c
[Playground](https://go.dev/play/p/Yg6v5mbwsdW) ```go package main import ( "fmt" ) func main() { cs := make(chan int) go func() { cs
[Playground](https://go.dev/play/p/gGcdwKLJkpv) ```go package main import ( "fmt" ) func main() { c := make(chan int) go func() { c