mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-18 02:43:40 +00:00
20 lines
459 B
Mathematica
20 lines
459 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module imported_mode.
|
|
:- interface.
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is det.
|
|
|
|
:- implementation.
|
|
:- import_module exported_mode.
|
|
|
|
main(!IO) :-
|
|
( if p(41, 42) then
|
|
io.print_line("yes", !IO)
|
|
else
|
|
io.print_line("no", !IO)
|
|
).
|