|
Revision 3941, 0.6 KB
(checked in by pmoura, 13 months ago)
|
|
Updated release number to 2.31.0 due to the incompatible changes in this version regarding compiler hooks.
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | |
|---|
| 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 3 | % |
|---|
| 4 | % Logtalk - Open source object-oriented logic programming language |
|---|
| 5 | % Release 2.31.0 |
|---|
| 6 | % |
|---|
| 7 | % Copyright (c) 1998-2007 Paulo Moura. All Rights Reserved. |
|---|
| 8 | % |
|---|
| 9 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | :- set_prolog_flag(iso, true). |
|---|
| 13 | :- set_prolog_flag(generate_debug_info, false). |
|---|
| 14 | :- system_module. |
|---|
| 15 | :- op(600, xfy, ::). |
|---|
| 16 | :- op(600, fy, ::). |
|---|
| 17 | :- op(600, fy, ^^). |
|---|
| 18 | :- op(200, fy, +). |
|---|
| 19 | :- op(200, fy, ?). |
|---|
| 20 | :- op(200, fy, @). |
|---|
| 21 | :- op(200, fy, -). |
|---|
| 22 | :- include('../compiler/logtalk.pl'). |
|---|