mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-18 02:43:40 +00:00
18 lines
324 B
Mathematica
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).
|