Help for this page

Select Code to Download


  1. or download this
    my $array = Object->new [ qw(1 .. 10) ];
    my $array_length = $array->length;</p>
    
  2. or download this
    my $array = [ qw(1 .. 10) ];
    my $array_length = scalar @$array;</p>
    
  3. or download this
    my $hash = Object->new { a => b };
    print $hash->keys->count, "\n";