/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
- class DOG
- inherit
- ANIMAL
- feature {ANY}
- cry: STRING is
- do
- Result := "BARK"
- end
- end -- class DOG