From: Dirk Einecke Date: 2004-04-19T05:24:09+09:00 Subject: add elment on the first index of an array Hi. I have an array. Now I will add a element on the first index. I do this like this: $a_foo = Array.new $a_foo = $bar.split('/') $a_foo = $a_foo.reverse $a_foo << 'something' $a_foo = $a_foo.reverse Is there a shorter way to do this? greetings Dirk Einecke