Re: Append new line at end of non-quoted text

2014-05-23 Thread Shawn H Corey
On Fri, 23 May 2014 15:52:11 -0700 Jim Gibson wrote: > Use the 'use warnings;' pragma in your program instead of '-w' on the > first line. That way, you can control which messages are issued. > Some modules have to do unsafe things to get the job done; it's the only way. But they do have the co

Re: Append new line at end of non-quoted text

2014-05-23 Thread Jim Gibson
Please post messages to the list, not to me personally. That way, you will get better answers sooner. On May 23, 2014, at 3:13 PM, Sherman Willden wrote: > Thank you, Jim; > > How do I get rid of the warning message without getting rid of the -w switch? Use the 'use warnings;' pragma in your p

Re: Append new line at end of non-quoted text

2014-05-23 Thread Hal Wigoda
print pi * 2, "\n"; On Fri, May 23, 2014 at 4:45 PM, Sherman Willden wrote: > Disclaimer: I am 67 and not in school. I am doing this for my own > satisfaction. > > How do I get a new line at the end of a non-quoted text. I am doing the > following: > Use Math::Trig; > print pi * 2; > print "\n";

Re: Append new line at end of non-quoted text

2014-05-23 Thread Jim Gibson
On May 23, 2014, at 2:45 PM, Sherman Willden wrote: > Disclaimer: I am 67 and not in school. I am doing this for my own > satisfaction. > > How do I get a new line at the end of a non-quoted text. I am doing the > following: > Use Math::Trig; > print pi * 2; > print "\n"; > > How do I get the

Append new line at end of non-quoted text

2014-05-23 Thread Sherman Willden
Disclaimer: I am 67 and not in school. I am doing this for my own satisfaction. How do I get a new line at the end of a non-quoted text. I am doing the following: Use Math::Trig; print pi * 2; print "\n"; How do I get the new line on the same line of code? I could do my $my_pi_times_two = pi * 2