mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-18 10:53:40 +00:00
25 lines
496 B
Mathematica
25 lines
496 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% Character constants in clause heads were doubly-escaped in .opt files.
|
|
%
|
|
|
|
:- module intermod_char.
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is det.
|
|
|
|
:- implementation.
|
|
|
|
:- import_module intermod_char2.
|
|
|
|
main(!IO) :-
|
|
( if p('\r') then
|
|
true
|
|
else
|
|
true
|
|
).
|