Hi,
I need to Declare 5 strings with Blank space,
my($a) = " ";
my($b) = " ";
my($c) = " ";
my($d) = " ";
my($e) = " ";
I am trying to do it in sinle line as below, but getting error,
my($a, $b, $c, $d, $e) = (" ");
How should I do this, just to make my code look better?
What is advisable way?
I need to Declare 5 strings with Blank space,
my($a) = " ";
my($b) = " ";
my($c) = " ";
my($d) = " ";
my($e) = " ";
I am trying to do it in sinle line as below, but getting error,
my($a, $b, $c, $d, $e) = (" ");
How should I do this, just to make my code look better?
What is advisable way?