Help for this page

Select Code to Download


  1. or download this
    package R;
    package R::startR;
    
  2. or download this
    package R::startR;
    ...
    @EXPORT_OK = qw(startR ...
    
  3. or download this
    $ cat pm_1152700_libs/R.pm
    package R;
    ...
    our @EXPORT_OK = qw{startR};
    sub startR { print 'This is &R::startR' }
    1;
    
  4. 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;
    
  5. or download this
    #!/usr/bin/env perl -l
    
    ...
    
    R::startR();
    R::startR::startR();
    
  6. or download this
    This is &R::startR
    This is &R::startR::startR
    
  7. or download this
    use R qw{some_startR};
    use R::startR qw{other_startR};
    
    some_startR();
    other_startR();