Also there's isn't really a recursion limit, the p...
# announcements
k
Also there's isn't really a recursion limit, the problem is literally that the stack overflows: stack frames with local variables keep boing added to the stack, and when the memory runs out you get a
StackOverflowError
.