Initialize and update multiple variables:
for i, j := 0, 10; i < j; i, j = i+1, j-1 {
fmt.Printf("i=%d, j=%d\n", i, j)
}
This runs while i is less than j, with i counting up and j counting down. They meet in the middle. Multiple variables are useful when you need two related counters.