• + 0 comments

    Extremelly easy (Perl):

    sub reverseArray {
        my $arr = shift;
        return reverse(@$arr);
    
    }