// Starting a number of thread in Go and wating for them to complete. // This example is intentionally identicaly to h3.rs which intends to // so the same thing in rust. // gtowell //Dec 2023 package main import ( "fmt" "sync" "time" ) func main() { var wg sync.WaitGroup threads:= 10 // number of threads to start for rz:=0; rz