The following example uses PRINTJOB to print one line of text making three copies:

_pcopies=3 // 3 copies
_peject="none" // no page eject before or after
_plineno=0 // initialized to 0
set printer on
printjob
? "A one line print job"
?
endprintjob
close printer // initiate printing
// prints:
// A one line print job
//
// A one line print job
//
// A one line print job
//