Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl
    use strict;
    use warnings;
    ...
    my @array = qw/1 2 3 4 5 6 7/;
    
    print "number of elements is " . ++$#array . "\n";
    
  2. or download this
    ww@GIG:~/pl_test$ perl elementsinarray.pl
    number of elements is 7