Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Ada
function Square (X : Integer) return Integer is
begin
   return X * X;
end Square;
int square(int x){
  return x*x;
}

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