Help for this page

Select Code to Download


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