Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Go
import "fmt"
for i, x := range items {
    fmt.Printf("Item %d = %v \n", i, x)
}

The range clause gives you index i and value x at the same time as loop variables
with Ada.Text_IO;
use Ada.Text_IO;
for I in Items'Range loop
   X := Items (I);
   Put_Line (Integer'Image (I) & " " & Integer'Image (X));
end loop;

Assuming Items is an array of integers.

New implementation...