Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
USES printer;
BEGIN
write(lst,'Hello printer!#12'); {Send a string followed by a FF}
END.
VAR prn : text;
BEGIN
assign(prn,'LPT1'); {Other ports may be LPT2, ..., COM1, COM2, ...}
rewrite(prn);
write(prn,'Hello printer!#12'); {Send a string followed by a FF}
close(prn);
END.