- or download this
package R;
package R::startR;
- or download this
package R::startR;
...
@EXPORT_OK = qw(startR ...
- or download this
$ cat pm_1152700_libs/R.pm
package R;
...
our @EXPORT_OK = qw{startR};
sub startR { print 'This is &R::startR' }
1;
- or download this
$ cat pm_1152700_libs/R/startR.pm
package R::startR;
...
our @EXPORT_OK = qw{startR};
sub startR { print 'This is &R::startR::startR' }
1;
- or download this
#!/usr/bin/env perl -l
...
R::startR();
R::startR::startR();
- or download this
This is &R::startR
This is &R::startR::startR
- or download this
use R qw{some_startR};
use R::startR qw{other_startR};
some_startR();
other_startR();