Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    print "My Test\n";
    Func1();             # ERROR!
    Func2("Fluffy", 5);  # ERROR!
    
  2. or download this
    use strict;
    use warnings;
    ...
    print "My Test\n";
    Func1();
    Func2("Fluffy", 5);  # ERROR!