.he 'TL''Page %'
.fo 'Steven Hardy'- % -'Page %'
TL	This function (and its UPDATER) access the list of all elements
but the first of the list given to it as argument.  Thus:-
 	: VARS X; [A B C] -> X;
 	: TL(X) =>
 	** [B C]
 	: [D E F] -> TL(X);
 	: X =>
 	** [A D E F]
 	: TL(X) =>
 	** [D E F]
.br
See HD, :: and <>.
