For loop of two variables in Go

The following for loop in Go isn't allowed, for i := 0, j := 1; i < 10; i++, j++ {...} What's the correct equivalent of the for-loop of two variables below? for (int i = 0, j = 1; i < 10; ...