- or download this
#!/usr/bin/perl
...
print "My Test\n";
$m->Func1();
$m->Func2("Fluffy", 5);
- or download this
package mymodule;
...
my ($class, $name, $value) = @_;
print "hi $name, value $value\n";
}
- or download this
My Test
Hi there
hi Fluffy, value 5