Logtalk 2.21.1 files.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1151 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
pmoura
2004-09-30 20:28:42 +00:00
parent e588c9972a
commit fd95dab3a7
166 changed files with 659 additions and 317 deletions

View File

@@ -1,6 +1,6 @@
=================================================================
Logtalk - Object oriented extension to Prolog
Release 2.21.0
Release 2.21.1
Copyright (c) 1998-2004 Paulo Moura. All Rights Reserved.
=================================================================
@@ -37,7 +37,7 @@ yes
| ?- parsetree::parse([the, girl, likes, the, boy], Tree).
Tree = Tree = s(np(d(the), n(girl)), vp(v(likes), np(d(the), n(boy))))
Tree = s(np(d(the), n(girl)), vp(v(likes), np(d(the), n(boy))))
yes
@@ -116,7 +116,7 @@ yes
% command language example:
?- faa::main.
| ?- faa::main.
Fly Amzi! Air
enter command> list flights
aa101
@@ -129,3 +129,18 @@ elana
tom
enter command> exit
yes
% double bypass using the {}/1 control constructs of grammar rules and Logtalk:
| ?- bypass::foo(_, _).
bar predicate called
yes
% run the Logtalk DCG translator on the test cases:
| ?- dcgtest::run.
...