Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Dart
items.asMap().forEach((i, x) {
  print('index=$i, value=$x');
});

An alternative, but not really idiomatic.
for (var i = 0; i < items.length; i++) {
  print('index=$i, value=${items[i]}');
}
import 'package:collection/collection.dart';
items.forEachIndexed((i, x) {
  print('index=$i, value=$x');
});
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...