In article <[EMAIL PROTECTED]> wrote "Dennis G. Wicks" <[EMAIL PROTECTED]>:
> Greetings; > > Is there any easy way to get print to do a "\n" without coding it explicitly? > > Most of the code fragments posted don't have any line feeds in the print statements >and without > them the output gets all strung together, overlaid with the prompt, interspersed >with messages > from the mail server and other uncontrollable things that make it far from useful. >Of course the > only solution is to edit the code and hope I don't fat-finger some errors into it! > > Many TIA, > Dennis Set the special variable $\ = "\n"; $\ contains the string printed out after every print statement. The default value of $\ is ''. Best Wishes, Andrea -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]