Updated to Logtalk 2.9.1

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@211 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
pmoura
2001-12-05 23:57:48 +00:00
parent 9c7149eab5
commit b77427df89
171 changed files with 1692 additions and 711 deletions

View File

@@ -1,6 +1,6 @@
=================================================================
Logtalk - Object oriented extension to Prolog
Release 2.8.4
Release 2.9.1
Copyright (c) 1998-2001 Paulo Moura. All Rights Reserved.
=================================================================
@@ -10,5 +10,5 @@ The examples in this folder are adopted from the SICStus Prolog manual.
To load all objects in this example consult the sicstus.loader utility
file (note that the *.loader files are Prolog files).
You will also need to load the follwing files in library directory:
You will also need to load the following files in library directory:
hierarchies.loader and types.loader.

View File

@@ -1,6 +1,6 @@
=================================================================
Logtalk - Object oriented extension to Prolog
Release 2.8.4
Release 2.9.1
Copyright (c) 1998-2001 Paulo Moura. All Rights Reserved.
=================================================================
@@ -9,7 +9,7 @@ Copyright (c) 1998-2001 Paulo Moura. All Rights Reserved.
| ?- sort(rational)::sort([1/8, 2/7, 6/5, 2/9, 1/3], Sorted).
Sorted = [1/8, 2/9, 2/7, 1/3, 6/5]
yes.
yes
| ?- sort(colours)::sort([orange, indigo, red, yellow, violet, blue, green], Sorted).
@@ -27,19 +27,19 @@ yes
| ?- red_circle(3)::color(Color).
Color = red
yes.
yes
| ?- red_circle(3)::area(Area).
Area = 28.274334
yes.
yes
| ?- red_circle(3)::ancestors(As).
As = [circle(3, red), ellipse(3, 3, red)]
yes.
yes
@@ -69,7 +69,7 @@ Side = 2
Width = 2
Height = 2
Area = 4
yes.
yes
| ?- square(2)::current_predicate(Pred).

View File

@@ -1,13 +1,13 @@
:- initialization(
logtalk_load([
circle11,
ellipse3,
circle2,
circle11,
red_circle1,
colours,
math_constants,
ellipse3,
rational,
rectangle2,
red_circle1,
sort1,
square1])).