1 2 3 4 5 6
// Adds the numbers 0 to 10000 sum := 0 for i := 0, i <= 100000, i += 1 { sum += i } sum <=> 5000050000