Files
mercury/tests/hard_coded/source_file_map.m
2020-10-06 19:20:18 +11:00

17 lines
356 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
:- module mapped_module.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
main(!IO) :-
io.write_string("OK\n", !IO).