Files
mercury/library/debug.nl
Fergus Henderson 04b720630b Update the copyright messages so that (a) they contain the correct years
and (b) they say "Copyright (C) ... _The_ University of Melbourne".
1997-07-27 15:09:59 +00:00

19 lines
788 B
Plaintext

%-----------------------------------------------------------------------------%
% Copyright (C) 1994-1995, 1997 The 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.
%-----------------------------------------------------------------------------%