cc4531cd1e
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@53 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
23 lines
249 B
Plaintext
23 lines
249 B
Plaintext
|
|
:- object(joeFilmEnthusiast,
|
|
extends(joePerson)).
|
|
|
|
|
|
:- public(favActor/1).
|
|
|
|
:- public(favFilm/1).
|
|
|
|
:- public(favDirector/1).
|
|
|
|
|
|
favActor('Fred Filistone').
|
|
|
|
|
|
favFilm('The Wizard of Oz').
|
|
|
|
|
|
favDirector('Krzystof Kieslowski').
|
|
|
|
|
|
:- end_object.
|