root/tags/lgt2311/library/SCRIPT.txt

Revision 4000, 0.5 KB (checked in by pmoura, 12 months ago)

Updated copyright string.

  • 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.31.1
4
5Copyright (c) 1998-2008 Paulo Moura.  All Rights Reserved.
6================================================================
7
8
9| ?- meta::succeeds(integer, [1, 2, 3]).
10
11yes
12
13
14| ?- meta::map(object_property, [meta, user], Out).
15
16Out = [static,built_in] ? ;
17Out = [static,static] ? ;
18no
19
20
21| ?- meta::filter(integer, [1, a, X, b(_), 4, 7.8, 'AAA'], Integers).
22
23Integers = [1,4]
24
25yes
Note: See TracBrowser for help on using the browser.