- or download this
sub SUBNAME{
my($this, $VARNAME) = @_;
...
return $this->{'VARNAME'};
}
}
- or download this
sub SUBNAME{
my($this, $VARNAME) = @_;
...
}
return $this->{'VARNAME'};
}
- 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());
- or download this
package sam;
...
return $top->{'ref'}->status;
}
1;
- or download this
package tes;
...
}
1;
- or download this
package status;
...
}
1;