Help for this page

Select Code to Download


  1. or download this
    BEGIN {
    unshift(@INC,".../sharedlib2.0")
    ...
    use perlmodule;
    
    #call subroutine in perlmodule dependent on sharedlib1.0"
    
  2. or download this
    BEGIN {
    unshift(@INC, ".../sharedlib1.0")
    ...
    sub perlsub {
    #call some function in sharedlib
    }