Help for this page

Select Code to Download


  1. or download this
    $ perl -wE'
    foo("bar");
    sub foo() { 1; }
    '
    main::foo() called too early to check prototype at -e line 2.
    
  2. or download this
    $ perl -wE'
    sub foo() { 1; }
    ...
    Too many arguments for main::foo at -e line 3, near ""bar")"
    Execution of -e aborted due to compilation errors.