|
Revision 4662, 0.7 KB
(checked in by pmoura, 6 days ago)
|
|
Updated copyright notice.
|
-
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.35.0 |
|---|
| 4 | |
|---|
| 5 | Copyright (c) 1998-2009 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 | % start by loading the example: |
|---|
| 13 | |
|---|
| 14 | | ?- logtalk_load(hooks(loader)). |
|---|
| 15 | ... |
|---|
| 16 | |
|---|
| 17 | % check the XML documenting file generated for "object" |
|---|
| 18 | % for the results of the term_expansion/2 calls |
|---|
| 19 | |
|---|
| 20 | |
|---|
| 21 | % check the results of the goal_expansion/2 calls: |
|---|
| 22 | |
|---|
| 23 | | ?- object::out. |
|---|
| 24 | |
|---|
| 25 | 'A' |
|---|
| 26 | x(A, A) |
|---|
| 27 | 3 |
|---|
| 28 | |
|---|
| 29 | yes |
|---|