Help for this page

Select Code to Download


  1. or download this
    use warnings;
    
  2. or download this
    use strict;
    
  3. or download this
    use warnings;
    use strict;
    
    my $x;
    print "$x\n";
    
  4. or download this
    Use of uninitialized value $x in concatenation (.) or string at script
    +.pl line 4.
    
  5. or download this
    use warnings;
    use strict;
    
    print "$y\n";
    
  6. or download this
    Global symbol "$y" requires explicit package name (did you forget to d
    +eclare "my $y"?) at script.pl line 4.