Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Haskell
square x = x**2

Result is a Floating
square x = x * x
square x = x^2

Result is an Integral
function Square (X : Integer) return Integer is
begin
   return X * X;
end Square;

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