In one of my scripts I have lots of variables to declare. I wanted to type them in 
groups instead of one long line but I think dividing my lines trough the use of the 
ENTER key stops the script from working. (Although when I check the syntax through 
"perl - c script.cgi" it gives me OK).

Basically instead of this:
my( $varaible1, $variable2, $variableA, $varaibleB);

I wanted to type this:
my( $varaible1, $variable2, 
$variableA, $varaibleB
);

Any reason why it shouldn't work?

Thanks,
Mariusz

Reply via email to