Help for this page

Select Code to Download


  1. or download this
    #!/exlibris/metalib/m4_b/product/bin/perl
    use demo;
    {
        my $externalObject = new demo;
    }
    
  2. or download this
    package demo;
    require "wrapper";
    ...
            &call_httpd_exec();
            my $externalObject2 = new demo2;
    }
    
  3. or download this
    package demo2;
    require "wrapper";
    ...
            my $self = {};
            &call_httpd_exec();
    }
    
  4. or download this
    sub call_httpd_exec{
        print "hello world!!\n"
    }
    
    1;
    
  5. or download this
    Undefined subroutine &demo::call_httpd_exec called at demo.pm line 8.