- or download this
interface Aircraft {
method set_pitch (...);
...
class Jet : isa Aircraft {
method set_pitch (...) {...}
}
- or download this
class Jet {
method set_pitch (...) {...}
...
interface FlyingThings {
require method set_pitch (...);
}
- or download this
class Piano {
method set_pitch (...) {...}
}
- or download this
ThickInterface ThinInterface
\ /
ThickThin
- or download this
unshift @ThickInterface::ISA, 'ThinInterface';