fork download
  1. public static Integer factorial(Integer n) {
  2. if (n == 0 || n == 1) {
  3. return 1; // Base condition to stop recursion
  4. }
  5. return n * factorial(n - 1); // Recursive call
  6. }
  7.  
Success #stdin #stdout #stderr 0.02s 10116KB
stdin
Standard input is empty
stdout
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)
stderr
./prog:2: parse error, expected '}'