Help for this page

Select Code to Download


  1. or download this
    #! perl
    use warnings;
    ...
    my @x = (1,2,3,4,5);
    delete $x[2];
    for (0..4) { print $x[$_] }
    
  2. or download this
    Use of uninitialized value in print at checkifexists.pl line 6.
    1245