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