Re: 1st line of perl script

2011-01-10 Thread Donald Calloway
I think there is no error thrown by Windows (or any other architecture) because this line is never compiled because of the # in front which signifies the line as comments. On Tue, 04 Jan 2011 00:33:18 -0500, Sunita Rani Pradhan wrote: Hi All Perl script works without the

Re: Increment Operators

2011-01-02 Thread Donald Calloway
$a *= $b means the same thing as $a = $a * $b. On Sun, 02 Jan 2011 19:00:05 -0500, J. S. John wrote: Hi all, I'm new to Perl. The only other language I know is Matlab/Octave and I'm still working my way around Linux. I am using Shlomi Fish's tutorial on perl until I get the llama book. I'm