.he 'MISHAP042''Page %'
.fo 'Aaron Sloman''February 78'
.sp
: 42 	Floating point overflow
.br
There's a limit to the size of the decimal numbers (floating
point numbers) the pop11 system can handle. You can get this
error as a result of trying to multiply two very large
numbers, or diving a number by a very small number.
E.g. try
 	3.5 / 0  =>
.br
or
 	vars x;
 	2.0 ->x;
 	loopif true then x + x -> x close;
