|
Revision 4005, 505 bytes
(checked in by pmoura, 12 months ago)
|
|
Use an initialization/1 directive in the Logtalk integration script auxiliary Prolog flag.
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | |
|---|
| 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 3 | % |
|---|
| 4 | % Logtalk - Open source object-oriented logic programming language |
|---|
| 5 | % Release 2.31.1 |
|---|
| 6 | % |
|---|
| 7 | % Copyright (c) 1998-2008 Paulo Moura. All Rights Reserved. |
|---|
| 8 | % |
|---|
| 9 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | :- initialization(( |
|---|
| 13 | reconsult('$LOGTALKUSER/configs/yap.config'), flush_output, |
|---|
| 14 | reconsult('$LOGTALKHOME/compiler/logtalk.pl'), flush_output, |
|---|
| 15 | reconsult('$LOGTALKUSER/libpaths/libpaths.pl'))). |
|---|