public static Integer factorial(Integer n) { if (n == 0 || n == 1) { return 1; // Base condition to stop recursion } return n * factorial(n - 1); // Recursive call }
Standard input is empty
Object: nil error: did not understand #static MessageNotUnderstood(Exception)>>signal (ExcHandling.st:254) UndefinedObject(Object)>>doesNotUnderstand: #static (SysExcept.st:1448) UndefinedObject>>executeStatements (prog:1) Object: Integer error: did not understand #n MessageNotUnderstood(Exception)>>signal (ExcHandling.st:254) Integer class(Object)>>doesNotUnderstand: #n (SysExcept.st:1448) UndefinedObject>>executeStatements (prog:1)
./prog:2: parse error, expected '}'