gorun=True callback error ``` func Test(n int, fn func(s string)) { for i := 0; i < n; i++ { time.Sleep(time.Second) fmt.Printf("write %d\n", i) } fn("ok") } ```