Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Scala
val items = List("a", "b", "c")
items.zipWithIndex.foreach{ case (item, index) => 
  println(s"$index => $item")
}

zipWithIndex takes each item in a collection and replaces it with a tuple of (item, index)
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...