Logo

Programming-Idioms

  • Scala
  • C#
  • Python
  • Elixir
@spec square(integer) :: integer
def square(x) when is_integer(x), do: x*x

The guard guarantees that the return value is an integer. The spec lets dialyzer warn you if you use this without something guaranteed to be an integer, or where the return value is used somewhere that an integer is invalid.
def square(x:Int): Int = x*x
void Square(ref int x)
{
    x = x * x;
}

The ref keyword indicates that a value is passed by reference.
To use this function you gonna need to type ref before your value
int Square(int x)
{
    return x * x;
}
int Square(int x) => (int)Math.Pow(x, 2);
double Square(int value) => System.Math.Pow(value, 2);

Math.Pow returns a double.
By default, this method will be private.
def square(x):
    return x**2

You can use power operator
square = lambda x: x * x
def square(x):
    return x*x

You don't have to explicitly write the return type
function Square (X : Integer) return Integer is
begin
   return X * X;
end Square;

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