Help for this page

Select Code to Download


  1. or download this
    @foo = qw[1 2 3 4 5];
    
    should transform into a hash that looks like this
    
    $bar->{1}{2}{3}{4}{5} = undef;
    
  2. or download this
    use Data::Dumper;
    use strict;
    ...
    
    eval($string);
    print Dumper($hashref);