Help for this page
@a = (); @b = qw (one two three); ... @d = @a || @c; #gives ('four', 'five') - OK @d = @b || @c; #gives ('3') - yikes!
@list = @a; @list = @default unless @list;