Help for this page

Select Code to Download


  1. or download this
    @a=('a', 'b', 'c');
    print "test1: ".scalar(@a)."\n";
    print "test2: ".scalar(sort @a)."\n";
    
  2. or download this
    test1: 3
    Use of uninitialized value at t2.pl line 3.
    test2: