Help for this page

Select Code to Download


  1. or download this
    sub SUBNAME{
        my($this, $VARNAME) = @_;
    ...
            return $this->{'VARNAME'};
        }
    }
    
  2. or download this
    sub SUBNAME{
        my($this, $VARNAME) = @_;
    ...
        }
        return $this->{'VARNAME'};
    }
    
  3. or download this
    #!/usr/bin/perl -w
    
    ...
    printf("\ntest1 is currently at: %s\n",$test1->current_status());
    printf("\ntest2 is currently at: %s\n",$test2->current_status());
    printf("\nsample is currently at: %s\n\n",$sample->current_status());
    
  4. or download this
    package sam;
    
    ...
        return $top->{'ref'}->status;
    }
    1;
    
  5. or download this
    package tes;
    
    ...
    }
    
    1;
    
  6. or download this
    package status;
    
    ...
    }    
    
    1;