.he 'MISHAP033''Page %'
.fo 'Aaron Sloman''February 78'
.sp
: 33 	Recursion level exceeded
.br
Probably one of your recursive functions goes on calling itself
indefinitely because you've forgotten to include a termination
test, e.g.
 	function silly (x);
 		pr(x);
 		silly(x+1)
 	end;
.br
then
 	silly(0);
.br
Occasionally you'll get the same error message simply because
your program gets very deep into function calls. This may
require major re-design, including perhaps replacing
some recursive functions with loops.
