Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    use 5.010;
    ...
        &Internals::SvREADONLY(\undef, 0);
        ${\undef} = "Demons are coming out of my nose!";
    };
    
  2. or download this
    BEGIN {
        &Internals::SvREADONLY(\'blue', 0);
        ${\'blue'} = 'turtle';
    ...
        ${\5} = 5.000000000001;
        
    };