Help for this page

Select Code to Download


  1. or download this
                strict ends here
                       |
    ...
       eval 'use strict';
       warn("Cannot 'use strict', it appears to be missing\n") if $@;
    }
    
  2. or download this
    BEGIN {           
       eval { require strict };
    ...
          strict->import();
       }
    }