.he 'MISHAP041''Page %'
.fo 'Aaron Sloman''February 78'
.sp
: 41 	Integer overflow
.br
pop11 can only handle fairly small integers. If you try to type
in one that's too big, or if your programs generate one that's too
big (e.g. by adding or multiplying numbers), you'll get this
error. Sometimes the solution is to use decimal numbers (reals)
instead of integers.
To find out the biggest permitted integer try the following-
 	vars x;
 	1 -> x;
 	loopif true then x+1 ->x close;
.br
and examine the error message carefully.
