Files
mercury/tests/invalid/imported_mode.m
Zoltan Somogyi 3dc4babb24 Update the style of more test cases.
And update expected output files for changes in line numbers.
2021-07-27 13:29:46 +10:00

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)
).