6
Come fermare una goroutine
Ho una goroutine che chiama un metodo e passa il valore restituito su un canale: ch := make(chan int, 100) go func(){ for { ch <- do_stuff() } }() Come faccio a fermare una simile goroutine?