?he 'PRINT''Page %'
?fo 'Steven Hardy'- % -'\*(DY'
.ce 2
Some printing exercise
======================

This document describes some of the ways of printing things in POP11.

The print arrow - =>
.br
Try the following:
 	: VARS X Y;
 	: 3 -> X; 4 -> Y;
 	: X =>
 	: "X" =>
 	: [X] =>
 	: 'X' =>
 	: [%"X", "IS", X%] =>
 	: CREATE PRVAL;
 	 10: FUNCTION PRVAL(WORD);
 	 20: 	[%WORD, "IS", VALOF(WORD)%] =>
 	 30: END;
 	 40:
 	: PRVAL("X");
 	: PRVAL("Y");
 	: PRVAL(X);
 	: PRVAL([X]);
