|
Revision 4572, 0.7 KB
(checked in by pmoura, 2 weeks ago)
|
|
Updated the Logtalk version number to 2.33.3 in preparation for the next release.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | ================================================================ |
|---|
| 2 | Logtalk - Open source object-oriented logic programming language |
|---|
| 3 | Release 2.33.3 |
|---|
| 4 | |
|---|
| 5 | Copyright (c) 1998-2008 Paulo Moura. All Rights Reserved. |
|---|
| 6 | Logtalk is free software. You can redistribute it and/or modify |
|---|
| 7 | it under the terms of the "Artistic License 2.0" as published by |
|---|
| 8 | The Perl Foundation. Consult the "LICENSE.txt" file for details. |
|---|
| 9 | ================================================================ |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | | ?- meta::succeeds(integer, [1, 2, 3]). |
|---|
| 13 | |
|---|
| 14 | yes |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | | ?- meta::map(object_property, [meta, user], Out). |
|---|
| 18 | |
|---|
| 19 | Out = [static,built_in] ? ; |
|---|
| 20 | Out = [static,static] ? ; |
|---|
| 21 | no |
|---|
| 22 | |
|---|
| 23 | |
|---|
| 24 | | ?- meta::filter(integer, [1, a, X, b(_), 4, 7.8, 'AAA'], Integers). |
|---|
| 25 | |
|---|
| 26 | Integers = [1,4] |
|---|
| 27 | |
|---|
| 28 | yes |
|---|