Help for this page

Select Code to Download


  1. or download this
    foreach (keys %info) {
        print "\t$info{$_}->[0]\t$info{$_}->[1]\t$info{$_}->[2]\t$info{$_}
    +->[3]\n";
    }
    
  2. or download this
    for (values %info) {
        print "\t", join("\t", @$_), "\n";
    }