Logo

Programming-Idioms

  • JS
  • Ruby
  • Dart
int square(int x) => x * x;
function square(x) { 
	return x * x;
}
const square = (x) => x * x;
const square = n => n**2

The exponentiation operator is the most expressive way to do this.
const square = (number) => Math.pow(number, 2);
def square(x)
  x*x
end

The last expression is returned by default.
def square(x) = x*x

Ruby 3.0
function Square (X : Integer) return Integer is
begin
   return X * X;
end Square;

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