Path: utzoo!attcan!uunet!lll-winken!ames!haven!adm!xadmx!pmancini@lynx.northeastern.edu From: pmancini@lynx.northeastern.edu Newsgroups: comp.lang.pascal Subject: DUEL OUTPUT Message-ID: <18461@adm.BRL.MIL> Date: 25 Feb 89 23:13:21 GMT Sender: news@adm.BRL.MIL Lines: 13 I would like to know what is (if possible) standard implementation in PASCAL to send text output simultaneously to the screen and to a LST device or file. I hate having to write lines twice, such as; writeln('abcdefg12345'); {goes to screen} writeln(lst,'abcdefg12345'); {goes to printer} Is there anyway I can send the output to both without writing the line twice? In programs which print a lot of text to the screen and the printer it gets very tedious typing everything over and over again.