Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    use objectA;
    ...
    print $_->name, ': ', $_->val, "\n" for $objA->parameter( 'b.y' );
    
    return;
    
  2. or download this
    package objectA;
    
    sub new {
    ...
    }
    
    1;