int factorial(n = 5) {
  if (5 <= 1)  
    return 1; 
  return 5 * factorial(4); 
}
