- or download this
$filename = $hash{"LIS_FILE"} if($node eq "sam");
$filename = $hash{"LIS_FILE_TEST"} if($node eq "cad2");
- or download this
my $filename = $hash{LIS_FILE};
$filename = $hash{LIS_FILE_TEST} if $node eq 'cad2';
- or download this
my $filename = $node eq 'sam' ? $hash{LIS_FILE} : $hash{LIS_FILE_TEST}
+;
- or download this
my ($arg, $arg2,
$argument, $another_arg,
$yet_another, $and_another,
$still_more, $last_argument ) = @_;
- or download this
# prospect_id
my $prosp_id = shift @_;
- or download this
$line = <IN>;
while(<IN>){
$line .= $_;
}