Logo

Programming-Idioms

  • Python
  • Go
  • Haskell
square x = x^2

Result is an Integral
square x = x**2

Result is a Floating
square x = x * x
def square(x):
    return x*x

You don't have to explicitly write the return type
square = lambda x: x * x
def square(x):
    return x**2

You can use power operator
func square(x int) int {
  return x*x
}

The return type is after the parameter list
function Square (X : Integer) return Integer is
begin
   return X * X;
end Square;

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