Help for this page

Select Code to Download


  1. or download this
      sub prototyped( $ $ ) {
        print( "Arg 1: " . $_[0] . "\n" );
    ...
    
      my @args = ( "first", "second" );
      prototyped( @args );
    
  2. or download this
      Not enough arguments for main::prototyped