This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/Logtalk/examples/viewpoints/joeSportsman.lgt

18 lines
144 B
Plaintext
Raw Normal View History

:- object(joeSportsman,
extends(joePerson)).
:- public(stamina/1).
:- public(weight/1).
stamina(30).
weight(111).
:- end_object.