This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/Logtalk/integration/logtalk_sicstus4.pl

23 lines
748 B
Perl
Raw Normal View History

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Logtalk - Open source object-oriented logic programming language
% Release 2.30.1
%
% Copyright (c) 1998-2007 Paulo Moura. All Rights Reserved.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
:- compile('$LOGTALKUSER/configs/sicstus4.config').
:- asserta((
user:goal_expansion(CallWitArgs, Layout, _, Call, Layout) :-
CallWitArgs =.. [call_with_args| Args],
Call =.. [call| Args])).
:- compile('$LOGTALKHOME/compiler/logtalk.pl').
:- retract((
user:goal_expansion(CallWitArgs, Layout, _, Call, Layout) :-
CallWitArgs =.. [call_with_args| Args],
Call =.. [call| Args])).
:- compile('$LOGTALKUSER/libpaths/libpaths.pl').