Yami Odymel https://invade.tw/ says to OwO
/go@mmis_js_bot package main import ( "fmt" "strconv" ) func main(){ for i := 0; i < 100; i++ { go func(){ fmt.Println(i) for j := 0; i < 100; i++ { go func(){ fmt.Println(strconv.Itoa(i) + "." + strconv.Itoa(j)) }() } }() } }