From: Vlad Ciubotariu Date: 2007-04-12T07:05:06+09:00 Subject: equivalent of perl qw operator I have a feeling I've seen it in the pickaxe book but I can't seem to find it again. Is there a way to write this differently? array = [ 'element1', 'element2', ...] In perl I could do @array = qw( element1 element2 ...) without the quotes. thanks vlad