Help for this page

Select Code to Download


  1. or download this
    %AniType = (cats => ["I", "like", "cats"],
                dogs => ["I", "like", "dogs"],
    ...
    foreach $line (0..2) {
      print "$AniAry[$line] MiscArya[$line] MiscAryb[$line] \n";
    }
    
  2. or download this
    @AniAry = @{ $AniType{cats} };
    $AniAry = $AniType{cats};