Help for this page

Select Code to Download


  1. or download this
    my @x = ();
    my @y = (99);
    print "x count is $#x, y count is $#y\n";
    
  2. or download this
    x count is -1, y count is 0