Files
mercury/tests/hard_coded/parse.m
2020-07-26 19:45:07 +10:00

22 lines
528 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
%
% Mercury 0.9 had a bug where a program compiled with tracing
% could not have a module with the same name as one of the
% browser library modules, which are not user-visible.
%
:- module parse.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
main(!IO) :-
io.write_string("ok\n", !IO).