Help for this page

Select Code to Download


  1. or download this
    if ( grep { $_ eq $system1 } @system_name ) { ...
    
  2. or download this
    my %system_name = ( box1 => 1, box2 => 1 );
    
    # ...
    
    if ( $system_name{$system1} ) { ...