Help for this page

Select Code to Download


  1. or download this
    use strict;
    my @abc= ('a','b','c','d');
    my $x= @abc;
    my $y = scalar(@abc);
    print $x."#".$y;