Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • C#
foreach (var x in items)
{
    DoSomething(x);
}

var can be replaced with the type of the item
for Item of Items loop
   Do_Something (Item);
end loop;

New implementation...