Logtalk 2.10.0 file.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@424 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
pmoura
2002-04-03 13:26:59 +00:00
parent 6a28b0a02b
commit 06ea1bd8ec
86 changed files with 410 additions and 269 deletions

View File

@@ -1,6 +1,6 @@
=================================================================
Logtalk - Object oriented extension to Prolog
Release 2.9.3
Release 2.10.0
Copyright (c) 1998-2002 Paulo Moura. All Rights Reserved.
=================================================================

View File

@@ -0,0 +1,14 @@
:- category(catdynpred).
:- public(dynpred/1).
:- dynamic(dynpred/1).
dynpred(1).
dynpred(2).
dynpred(3).
:- end_object.

View File

@@ -35,4 +35,10 @@
[unmatchdir],
[unknown(warning), misspelt(warning), singletons(warning), plredef(warning), lgtredef(warning), report(on)]),
_,
true),
catch(
logtalk_load(
[catdynpred],
[unknown(warning), misspelt(warning), singletons(warning), plredef(warning), lgtredef(warning), report(on)]),
_,
true))).

View File

@@ -1,15 +1 @@
:- object(portability).
:- public(predicate/0).
predicate :-
compare(Result, first, second),
retractall(result(Result, _)),
sort([], []),
consult(file).
:- end_object.