mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-15 22:03:26 +00:00
19 lines
773 B
Plaintext
19 lines
773 B
Plaintext
%-----------------------------------------------------------------------------%
|
|
% Copyright (C) 1995 University of Melbourne.
|
|
% This file may only be copied under the terms of the GNU Library General
|
|
% Public License - see the file COPYING.LIB in the Mercury distribution.
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
% Linking with this file ensures that main/1 will call the NU-Prolog
|
|
% command loop rather than calling main_predicate.
|
|
% The program can then be run manually using run/1, eg.
|
|
% run([progname, '-vVdg', 'foo.nl']).
|
|
% Files such as error.nl can be loaded in manually.
|
|
|
|
:- dynamic io__inhibit_user_main/0.
|
|
io__inhibit_user_main.
|
|
|
|
:- trace.
|
|
|
|
%-----------------------------------------------------------------------------%
|