/tutorial/cecil/array_of_references/dog.e

http://github.com/tybor/Liberty · Specman e · 12 lines · 9 code · 3 blank · 0 comment · 0 complexity · f134fdbaf6540daba707a62492ccb25c MD5 · raw file

  1. class DOG
  2. inherit
  3. ANIMAL
  4. feature {ANY}
  5. cry: STRING is
  6. do
  7. Result := "BARK"
  8. end
  9. end -- class DOG