WIP stashed changes

This commit is contained in:
Ayke van Laethem
2025-04-01 09:16:35 +02:00
parent 04242fd620
commit ea2f0e444d
14 changed files with 311 additions and 364 deletions
+1
View File
@@ -12,6 +12,7 @@ var wg sync.WaitGroup
type intchan chan int
func main() {
time.Sleep(time.Second * 2)
ch := make(chan int, 2)
ch <- 1
println("len, cap of channel:", len(ch), cap(ch), ch == nil)