in reply to Concatenating more than one variable in perl

Like so?
use Data::Dumper (); my @foo = @bar = (1, 2, 3); print Data::Dumper::Dumper(\@foo, \@bar);
Update, upon further reflection looks like you may want to look at join or sprintf/printf.