RE: Looking for "\n" shortcut.

2004-06-03 Thread Charles K. Clarkson
Randy W. Sims wrote: : On 6/3/2004 10:54 PM, Dennis G. Wicks wrote: : : You can use here-documents (see `perldoc perldata`) : : print < "\n"; : : print 'Hello,' . eol; : print 'world' . eol; You can also change the value of $\ to "\n": $\ = "\n"; print 'Hello,';

Re: Looking for "\n" shortcut.

2004-06-03 Thread Randy W. Sims
On 6/3/2004 10:54 PM, Dennis G. Wicks wrote: Greetings; Is there a shortcut or option or something that will let me not have to type "\n"; so often? I am not the worlds best typist and I need all the help I can get! You can use here-documents (see `perldoc perldata`) print < you could also define a