> sub get_colors {
>    my @items = ("red");
>    return @items;
> }

Try that with:

return \@items;

;)

--mark


Reply via email to