cxmTest batch translation articles - Other tables that are not application guides

Trying to translate Chinese in batches

Try to see if the effects of the image and the article will be translated together

Title 1

Title 2

Title 3

Try to see if the final result code block, etc., will be affected by the translation.

package main import "fmt" func main() { ch := make(chan string) for i := 0; i < 10; i++ { s := <- ch fmt.Println(s) } go func(ch chan string) { for i := 0; i & lt; 10; i++ { ch <- fmt.Sprintf("%d", i) } }(ch) }