Help for this page

Select Code to Download


  1. or download this
        (F) You've said "use strict" or "use strict vars", which indicates
    + 
        that all variables must either be lexically scoped (using "my" or 
    +"state"), 
        declared beforehand using "our", or explicitly qualified to say 
        which package the global variable is in (using "::").
    
  2. or download this
    use strict;
    use warnings;
    ...
    
    printf "char %s is code %d, %#04x\n", $char, $code, $code;