Help for this page

Select Code to Download


  1. or download this
    sub fudge($){ print @_ }
    
  2. or download this
    fudge(1);
    fudge 2;
    
  3. or download this
    fudge 1,2;
    
  4. or download this
    fudge(1,2);
    
  5. or download this
    $ perl  -le " sub fudge($){print @_}  fudge(1,2);
    Too many arguments for main::fudge at -e line 1, near "2)"
    Execution of -e aborted due to compilation errors.