RosettaCodeData/Task/Inheritance-Single/AutoHotkey/inheritance-single.ahk
2023-07-01 13:44:08 -04:00

14 lines
303 B
AutoHotkey

dog := new Collie
MsgBox, % "A " dog.__Class " is a " dog.base.base.__Class " and is part of the " dog.kingdom " kingdom."
class Animal {
static kingdom := "Animalia" ; Class variable
}
class Dog extends Animal {
}
class Cat extends Animal {
}
class Lab extends Dog {
}
class Collie extends Dog {
}