Files
mercury/tests/mmc_make/rebuild.m
2020-10-29 23:06:06 +11:00

19 lines
467 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
%
% "Hello World" in Mercury.
% This source file is hereby placed in the public domain. -fjh (the author).
:- module rebuild.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
main(!IO) :-
io.write_string("Hello, world\n", !IO).