Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    }
    
    print Dumper($x);
    
  2. or download this
    Global symbol "$i" requires explicit package name at noname.pl line 5.
    Global symbol "$i" requires explicit package name at noname.pl line 5.
    ...
    Global symbol "$i" requires explicit package name at noname.pl line 6.
    Global symbol "$x" requires explicit package name at noname.pl line 10
    +.
    Execution of noname.pl aborted due to compilation errors.
    
  3. or download this
    use strict;
    use warnings;
    ...
    }
    
    print Dumper (\%x);
    
  4. or download this
    #1/ Perl for loop:
    my %x;
    ...
    
    #4/ hash slice and x operator:
    @x{0 .. 4} = ('x') x 5;