Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    Can't declare array dereference in "my" at xx.pl line 8, near "} ="
    Execution of xx.pl aborted due to compilation errors.
    
  2. or download this
    use strict;
    use warnings;
    ...
        @{"platforms_$site"} = qw( foo bar );
        %{"platforms_$site"} = map { $_ => 1 } @{"platforms_$site"};
        }