Help for this page

Select Code to Download


  1. or download this
    sub DoSomething( $\$\$ )
    
  2. or download this
    my $name;
    my $path;
    my $count;
    DoSomething( $name, \$path, \$count );
    
  3. or download this
    package MyModule;
    require Exporter;
    ...
    @EXPORT = qw( DoSomething );
    
    sub DoSomething( $\$\$ )
    
  4. or download this
    Type of arg 2 to MyModule::DoSomething must be scalar (not single ref 
    +constructor) at D:\dlkusters\vsstools\ss2Sink.pl line 56, near "$path
    + )"
    Type of arg 3 to MyModule::DoSomething must be scalar (not single ref 
    +constructor) at D:\dlkusters\vsstools\ss2Sink.pl line 56, near "$coun
    +t )"
    Execution of D:\dlkusters\vsstools\ss2Sink.pl aborted due to compilati
    +on errors.
    
  5. or download this
    sub DoSomething( $$$ )