Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    use strict;
    ...
    __END__
    Global symbol "@ary" requires explicit package name at test.pl line 10
    +.
    Execution of test.pl aborted due to compilation errors.
    
  2. or download this
    #!/usr/bin/env perl
    use strict;
    ...
        # correct length
        print scalar(@$ary), "\n";
    }