factorial -rc (int n)
           -> (int result = 1)
{
  if (n > 1) 
  {
    result = n * factorial (n - 1);
  }
}