Help for this page

Select Code to Download


  1. or download this
    my @vector = (4.3125, 0.4375);
    push @AoA, @vector;
    @vector = (4.375, 0.375);
    push @AoA, @vector;
    
  2. or download this
    (4.3125, 0.4375, 4.375, 0.375)
    
  3. or download this
    my @vector = (4.3125, 0.4375);
    push @AoA, \@vector;
    @vector = (4.375, 0.375);
    push @AoA, \@vector;
    
  4. or download this
    push @AoA, [4.3125, 0.4375];
    push @AoA, [4.375, 0.375];