.he 'GOTO''Page %'
.fo 'Steven Hardy''January 78'
GOTO
.br
----
.br
This transfers control to the instruction labelled by the following word.
For example:
 	: FUNCTION LAUGH
 	: L:	PPR("HO"); 
 	:	GOTO L
 	: END;
 	: LAUGH();
 	 HO HO HO HO HO HO HO HO HO......................
.br
Here 'L:' labels the following instruction and 'GOTO L' transfers control
to the labelled point.  Labels and GOTO can only
occur inside function bodies and one can GOTO only labels in the same function.
The use of labels is hardly ever necessary.  If you have to use labels to
write a program you probably don't 
.ul
really
understand the problem the program is solving.
