in reply to Re: Sort optionsin thread Sort options
my @split_list = qw{@list}; [download]
qw is a way to specify literal lists. @a= qw{ a b c } is equivalent to @a= ('a','b','c');. If you already have an array, you don't need qw.