Help for this page

Select Code to Download


  1. or download this
    for my $key (sort keys %main::) {
      next unless *{$main::{$key}}{ARRAY};
      print "$key\n";
    }
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    splice(@$, 0, 1, "hello", "world") for @list;
    
    print "@$\n";