Files
mercury/tests/hard_coded/string_loop.m
Zoltan Somogyi 9ac2112a58 Added two old regression tests.
Estimated hours taken: 1

Added two old regression tests.
1996-07-22 09:03:50 +00:00

18 lines
324 B
Mathematica

% Tom says "The following module loops forever on mundook".
:- module string_loop.
:- interface.
:- import_module io.
:- pred main(io__state::di, io__state::uo) is det.
:- implementation.
:- import_module list, float, string.
main(IO0, IO) :-
string__format("%ei\n", [f(0.0)], Str),
io__write_string(Str, IO0, IO).