in reply to Re^2: Sort optionsin thread Sort options
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.