Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    dd @idx;  # (4, 1, 0, 5, 3, 2)
    my @out = map { $matrix[2][$_] } @idx;
    dd @out;  # ("del", "mis", "mis", "del", "mis", "mis")