Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    }
    # gives warning message:
    # main::foo() called too early to check prototype ...
    
  2. or download this
    use strict;
    use warnings;
    ...
    sub foo ($){
        print "foo called: @_\n";
    }