Logo

Programming-Idioms

  • Scheme
  • Java
  • Go
func square(x int) int {
  return x*x
}

The return type is after the parameter list
(define square
    (lambda (x)
        (* x x)))
(define (square x)
    (* x x))

This is a short syntax for a lambda definition.
int square(int a) { return a * a; }
interface F { int get(int a); }
F square = x -> x * x;
import static java.lang.Math.pow;
int square(int a) { return (int) pow(a, 2); }
import java.math.BigInteger;
BigInteger square(BigInteger a) {
    return a.multiply(a);
}
int square(int x){
  return x*x;
}
Function<Integer,Integer> squareFunction = x -> x * x;
function Square (X : Integer) return Integer is
begin
   return X * X;
end Square;

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