Help for this page

Select Code to Download


  1. or download this
    {
       my $q;
    ...
       }
       print $q; # prints 42
    }
    
  2. or download this
    for (0..1) {
       my $q;
    ...
       }
       print $q || "undef"; # prints 42undef
    }
    
  3. or download this
    our $q = 54; # never actually used
    for (0..1) {
    ...
       }
       print $q || "undef"; # prints 4242
    }