Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Js
const square = (x) => x * x;
const square = (number) => Math.pow(number, 2);
const square = n => n**2

The exponentiation operator is the most expressive way to do this.
function square(x) { 
	return x * x;
}
function Square (X : Integer) return Integer is
begin
   return X * X;
end Square;

New implementation...
< >
programming-idioms.org