package main import ( "fmt" ) func launchRoutine(i int) { go func(i int) { fmt.Printf("goroutine : %d\n", i) go func(i int) { fmt.
確定! 回上一頁