.he 'FNPROPS''Page %'
.fo 'Steven Hardy''January 78'
FNPROPS	All functions in POP11 have a property list accessible with the
function FNPROPS.
The system makes use of the FNPROPS of a function when printing.
Try assigning to the FNPROPS of a function and then printing the
function, for example:
 	: FUNCTION SILLY(NUM); NUM + NUM END;
 	: SILLY =>
 	: "VERYSILLY" -> FNPROPS(SILLY);
 	: SILLY =>
 	: [1 10 1 10] -> FNPROPS(SILLY);
 	: SILLY =>
 	: NEWARRAY ([1  20  1  20]) -> F;
 	: FNPROPS(F) =>
 	: F =>
