mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 17:33:38 +00:00
33 lines
940 B
Mathematica
33 lines
940 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% The 22 March 2000 version of the compiler generated C code that contained
|
|
% strings that were not properly quoted in the RTTI structures of the type
|
|
% below, due to the backslashes in the function names.
|
|
%
|
|
|
|
:- module rtti_strings.
|
|
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is det.
|
|
|
|
:- implementation.
|
|
|
|
:- import_module bool.
|
|
|
|
:- type boolean_constraint
|
|
---> const(bool)
|
|
; boolean_constraint =:= boolean_constraint
|
|
; boolean_constraint /\ boolean_constraint
|
|
; boolean_constraint \/ boolean_constraint
|
|
; boolean_constraint `implies` boolean_constraint
|
|
; not(boolean_constraint).
|
|
|
|
main(!IO) :-
|
|
io.write(const(no) /\ const(yes), !IO),
|
|
io.write_string("\n", !IO).
|