循环 # Go只有一种循环语句:for 1 2 3 4 5 6 7 func main() { sum := 0 for i := 0; i < 10; i++ { sum += i } fmt.Println(sum) }