Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    say size(\@array);
    $#array = 5_000;
    say size(\@array);
    
  2. or download this
    80064
    80216
    
  3. or download this
    my @array = 1 .. 10_000;
    say size(\@array);
    splice @array, 5_001;
    say size(\@array);
    
  4. or download this
    80064
    80064