On Tue, Jun 14, 2005 at 10:31:58PM +0200, Ingo Blechschmidt wrote: : You can use : say [~] @array; # "abcd" or : say @array.join(""); # "abcd" or : say join "", @array; # "abcd" : if you want to supress the spaces.
I think a bare @array.join should also work. Larry