- or download this
sub DoSomething( $\$\$ )
- or download this
my $name;
my $path;
my $count;
DoSomething( $name, \$path, \$count );
- or download this
package MyModule;
require Exporter;
...
@EXPORT = qw( DoSomething );
sub DoSomething( $\$\$ )
- 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.
- or download this
sub DoSomething( $$$ )