Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Ada
for E of elements loop
   E := E * c;
end loop;
for(int i = 0; i < elements_size; ++i) elements[i] *= c;

elements_size must be provided, as there is no general way to figure it out.

New implementation...
< >
Bzzzzzzzzz