Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Go
for i := range elements {
	elements[i] *= c
}

It is idiomatic to write this explicit loop.
for E of elements loop
   E := E * c;
end loop;

New implementation...
< >
Bzzzzzzzzz