Help for this page

Select Code to Download


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