Path: utzoo!attcan!uunet!ginosko!gem.mps.ohio-state.edu!apple!usc!oxy!c_wilson
From: c_wilson@oxy.edu (Clarence Regis Wilson)
Newsgroups: comp.lang.pascal
Subject: Output to printer.
Message-ID: <50331@tiger.oxy.edu>
Date: 27 Sep 89 19:38:45 GMT
Organization: Occidental College, Los Angeles, CA  90041
Lines: 10

You can send your output to the printer using the following commands:

uses printer;

writeln(lst,'This will be sent to printer');

Remember, though, that the string will be sent only to the printer.
If you must see the output on the screen also, you must duplicate
the 8
*writeln* statement without the *lst* option.