mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-16 09:53:36 +00:00
21 lines
431 B
Mathematica
21 lines
431 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module intermod_c_code.
|
|
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is det.
|
|
|
|
:- implementation.
|
|
|
|
:- import_module intermod_c_code2.
|
|
|
|
main(!IO) :-
|
|
c_code("Hello, world\n", Y),
|
|
io.write(Y, !IO),
|
|
io.nl(!IO).
|