cc4531cd1e
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@53 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
16 lines
288 B
Plaintext
16 lines
288 B
Plaintext
|
|
:- object(instance3,
|
|
instantiates(root)).
|
|
|
|
|
|
method :-
|
|
this(This),
|
|
write('This is a specializing definition stored in the '),
|
|
writeq(This),
|
|
write(' instance itself.'), nl,
|
|
write('It makes a super call to execute the default definition:'), nl, nl,
|
|
^^method.
|
|
|
|
|
|
:- end_object.
|