Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    my $x;
    for $x (1 .. 3) { last if $x == 2 }
    print $x;
    
  2. or download this
    Use of uninitialized value in print at - line 5.