.he 'PRSTRING''Page %'
.fo 'Steven Hardy''January 78'
PRSTRING	This function PRints a STRING without string quotes ("'"),
for example:
 	: FUNCTION PLEASE(ITEM);
 	:	PRSTRING('TWO POUNDS OF ');
 	:	PR(ITEM);
 	:	PRSTRING(', PLEASE');
 	:	PR(NEWLINE);
 	: END;
 	: PLEASE("APPLES");
 	: APPLIST([ORANGES BANANAS GRAPES POTATOES],PLEASE);
.br
What does the above code print out?
See also the PRSTRING demo.
