- or download this
$number = [1,2,3];
@number = (4,5,6);
print "$number @$number @number";
- or download this
ARRAY(0x814cc20) 1 2 3 4 5 6
- or download this
my $comma_sep_number = join(",",@$number);
print "My Array Contains: $comma_sep_number";
- or download this
My Array Contains: 1,2,3