root/trunk/library/SCRIPT.txt

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================================================================
2Logtalk - Open source object-oriented logic programming language
3Release 2.33.3
4
5Copyright (c) 1998-2008 Paulo Moura.        All Rights Reserved.
6Logtalk is free software.  You can redistribute it and/or modify
7it under the terms of the "Artistic License 2.0" as published by
8The Perl Foundation. Consult the "LICENSE.txt" file for details.
9================================================================
10
11
12| ?- meta::succeeds(integer, [1, 2, 3]).
13
14yes
15
16
17| ?- meta::map(object_property, [meta, user], Out).
18
19Out = [static,built_in] ? ;
20Out = [static,static] ? ;
21no
22
23
24| ?- meta::filter(integer, [1, a, X, b(_), 4, 7.8, 'AAA'], Integers).
25
26Integers = [1,4]
27
28yes
Note: See TracBrowser for help on using the browser.