dayton-outar opened this issue 4 years ago · 0 comments
The screenshot above shows details of a StackOverflowError when executing the following source code,
fact = (:n) { (n <= 1) ? 1 : n * fact(n - 1); } :> fact(3);