Help for this page

Select Code to Download


  1. or download this
        my $s = ();
    
  2. or download this
        my $s = (undef);
    
  3. or download this
        my $s;
    
  4. or download this
    use strict;
    use warnings;
    ...
    Dump ($s);
    $s->{'a'} = 10 ;
    Dump ($s);
    
  5. or download this
    $VAR1 = undef;
    $HASH1 = { a => 10 };
    
  6. or download this
        my $s = {};