Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl --
    use strict; use warnings;
    ...
    
    push @things, \@feet, \@shoes;
    dd { feet => \@feet, shoes => \@shoes, things => \@things };
    
  2. or download this
    {
      feet   => ["left", "right"],
    ...
      $a->{things}[1] = $a->{shoes};
      $a;
    }