Help for this page

Select Code to Download


  1. or download this
    my @h;
    my @i= (0..1);
    ...
    Use of uninitialized value in join or string at P:\test\junk.pl line 4
    +.
    Use of uninitialized value in join or string at P:\test\junk.pl line 4
    +.
    (0 3  )
    
  2. or download this
    my %h; @h{ map{ int rand 100 } 1..4 } = 'A'..'D';
    print 'Before:', %h, $/;
    ...
    __END__
    Before:25A39D0C23B
    After:
    
  3. or download this
    my %h; @h{ map{ int rand 100 } 1..4 } = 'A'..'D';
    print 'Before:', %h, $/;
    ...
    __END__
    Before:6D59B60A75C
    After: 4C1D3A2B