Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    use YAML;
    my $array = [ "a" .. "e" ];
    delete @{$array}[0,2,4];
    print Dump $array;