Help for this page

Select Code to Download


  1. or download this
    package private;
    our $my_scalar = 'my scalar';
    ...
    ARRAYS => private::my_array
    SCALARS => private::my_scalar, private::my_array, private::my_hash
    HASHES => private::my_hash
    
  2. or download this
    package private;
    our $my_scalar = 'my scalar';
    ...
    # prints the following
    ARRAY portion of a scalar glob: $VAR1 = undef;
    SCALAR portion of an array glob: $VAR1 = \undef;