Logo

Programming-Idioms

  • C++
  • Lisp
  • Python
  • Fortran
  • C#
  • C#
double Square(int value) => System.Math.Pow(value, 2);

Math.Pow returns a double.
By default, this method will be private.
int Square(int x)
{
    return x * x;
}
int Square(int x) => (int)Math.Pow(x, 2);
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;
}
(defun square (x)
  (* x x))
def square(x):
    return x**2

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

You don't have to explicitly write the return type
square = lambda x: x * x
module foo
  implicit none
contains
  function square(i) result(res)
    integer, intent(in) :: i
    integer :: res
    res = i * i
  end function square
end module foo

Modern Fortran code should use modules, so I put the function into one.
function Square (X : Integer) return Integer is
begin
   return X * X;
end Square;

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