.he 'MISHAP031''Page %'
.fo 'Aaron Sloman''February 78'
.sp
: 31 	No more workspace (stack)
.br
The most common causes of "stack-overflow" are non-terminating
recursion, or loops which go on piling things on the stack.
e.g. try typing
 	until 3 > 4 then 66 close;
.br
or a function like this-
 	function silly (num);
 		num + silly(num+1);
 	end;
.br
then
 	silly(0) =>
