mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 01:13:30 +00:00
22 lines
528 B
Mathematica
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).
|