Help for this page

Select Code to Download


  1. or download this
    my @Array;
    $Array[0] = "1,5";
    ...
    
    use Data::Dumper;
    print Dumper \@Array;
    
  2. or download this
    my @Array = (
        [1, 5],
    ...
    
    use Data::Dumper;
    print Dumper \@Array;