Help for this page

Select Code to Download


  1. or download this
    use strict
    
  2. or download this
    #from http://www.perlmonks.org/?node_id=431329
    #use strict; #Uncomment me to get to the root of the problem.
    ...
    #Only get error if you use strict;
    print "WRONG Dereffed Array in hash: @$Hash{ArrayInHash}";
    print "RIGHT Dereffed Array in hash with brackets: @{$Hash{ArrayInHash
    +}}";