cc4531cd1e
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@53 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
14 lines
198 B
Plaintext
14 lines
198 B
Plaintext
|
|
:- object(instance2,
|
|
instantiates(root)).
|
|
|
|
|
|
method :-
|
|
this(This),
|
|
write('This is an overriding definition stored in the '),
|
|
writeq(This),
|
|
write(' instance itself.'), nl.
|
|
|
|
|
|
:- end_object.
|