Help for this page

Select Code to Download


  1. or download this
    use warnings; use strict;
    our $I = "f";
    $I = undef; 
    open $I, '<', \3 or die "open in mem: $!";
    bless \$a, 0;
    $I = ref \$a;
    
  2. or download this
    use warnings; use strict;
    our $I = "f";
    undef $I;           ## <---
    open $I, '<', \3 or die "open in mem: $!";
    bless \$a, 0;
    $I = ref \$a;