Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    my @gn;
    p @gn;    # print [] i.e empty
    print my $c = () = @gn;    ## print 0
    
  2. or download this
    # your script.pl 
    use warnings;
    ...
    print "@libfiles\n";
    my $LstCnt = @libfiles;
    print "$LstCnt\n";
    
  3. or download this
    foo bar baz
    3