Help for this page

Select Code to Download


  1. or download this
    use::warnings;
    use::strict;
    
  2. or download this
    use::warnings;  # Returns the var "*warnings" in the pkg "use".
    use::strict;    # Returns the var "*strict"   in the pkg "use".
    ...
    print $abc;     # "use strict" would give an error (not declared),
                    # "use warnings" would give a warning (undefined),
                    # but we get nothing.
    
  3. or download this
    use warnings;
    use strict;