Logo

Programming-Idioms

  • PHP
  • Ruby
items.each_index{|i| puts "Item %d = %s" % [i, items[i]]}
items.each_with_index do |x, i| 
  puts "Item #{i} = #{x}"
end

See also the one-liner Ruby solution
foreach ($items as $i=>$x)
{
    echo "i=$i, x=$x"; echo '<br>';
}
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...