Help for this page

Select Code to Download


  1. or download this
    package MyModule;
    
    ...
    # All cases    
    my @rray = (1, 2, 3, 4);
    1;
    
  2. or download this
    use strict;
    
    ...
    # case 3
    use MyModule qw(@rray);
    print scalar(@rray);