Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Haskell
map (*c) elements

(*c) is a shorthand for the lambda (\e -> e * c)
for E of elements loop
   E := E * c;
end loop;

New implementation...
< >
Bzzzzzzzzz