Logo

Programming-Idioms

  • JS
  • C++
  • C
int square(int x){
  return x*x;
}
const square = (number) => Math.pow(number, 2);
const square = (x) => x * x;
function square(x) { 
	return x * x;
}
const square = n => n**2

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

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