cat

.
. Member 7: "cat" Cast 1: "Internal"
.
__

--
--^ A feline.
--

property ancestor

on birth me
  set the ancestor of me = birth(script "mammal")
  set the favouriteSound of me = "meow!"
  set the mySpecies of me = "cat"
  return me
end

--^ note this overrides "reportSound" in our ancestor "animal"
on reportSound me
  alert "I decline to make a noise, on the grounds that you are a mere human, while I am a cat."
end