On 24 December 2010 14:49, Jugurtha Hadjar <jugurtha.had...@gmail.com> wrote:

> I rewrote your code and at the very beginning, just before any variable was
> /used/ [i.e, just after "use strict", I added
>
>
> # Intialization begins
>
> my $cell        ='';
> my $filename    ='';

If you're going to an empty value (which is not necessary) then at
least you must close the quotes!:

my $cell        ="'';
my $filename    =''";

Easier to to

my ($cell, $filename, $etc);


JD

--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to