Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Fortran
elemental subroutine foo(x)
  real, intent(in) :: x
end subroutine foo

call foo(x)
for Item of Items loop
   Do_Something (Item);
end loop;

New implementation...