in reply to Re: Interfaces
in thread Interfaces
sub cant_do_that { my $self = shift; print "Error: Use of undefined Abstract Method by $self.\n"; } use subs qw/methodOne methodTwo/; *methodOne = \&cant_do_that; *methodTwo = \&cant_do_that;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: Re: Interfaces
by merlyn (Sage) on Jun 07, 2000 at 04:17 UTC | |
by ivey (Beadle) on Jun 13, 2000 at 22:44 UTC |