Philippe Bruhat (BooK)
/
perl-5.42.0
/
t/mro/vulcan_c3.t
example taken from: http://www.opendylan.org/books/drm/Method_Dispatch
Object
^
|
LifeForm
^ ^
/ \
Sentient BiPedal
^ ^
| |
Intelligent Humanoid
^ ^
\ /
Vulcan
define class <sentient> (<life-form>) end class;
define class <bipedal> (<life-form>) end class;
define class <intelligent> (<sentient>) end class;
define class <humanoid> (<bipedal>) end class;
define class <vulcan> (<intelligent>, <humanoid>) end class;