Files
mercury/tests/hard_coded/reverse_arith.m
Zoltan Somogyi b18ba1e6fc Fix module names in :- module declarations.
Estimated hours taken: 0.2

hard_coded/*.m:
	Fix module names in :- module declarations.
1996-12-23 04:58:23 +00:00

13 lines
255 B
Mathematica

:- module reverse_arith.
:- interface.
:- import_module io.
:- pred main(io__state::di, io__state::uo) is cc_multi.
:- implementation.
:- import_module int.
main -->
( { X = 5, X = 2 * 2 } ->
io__write_string("yes\n")
;
io__write_string("no\n")
).