mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 17:33:38 +00:00
Replace __ with . as the module qualifier symbol. Replace references to io.state with just io. Replace DCGs with state variables. Replace (C->T;E) syntax for if-then-elses with (if C then T else E) syntax. Replace if-then-elses with switches when possible and where this does not affect what is being tested. Replace separate pred and mode declarations with predmode declarations. Put predicate and function declarations just before the definition of the predicate or function. Delete unneeded module qualifications on predicate and function declarations and definitions. Update .exp files (and if needed, .inp files) for the line number changes that result from the above. For tests that have more than one .exp file and where one of those files is affected by the above, add a section to the source file header that says which .exp file is for what grade, with XXXs for the (as yet) unknown parts.
56 lines
1.5 KiB
Mathematica
56 lines
1.5 KiB
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module higher_order.
|
|
|
|
:- interface.
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, state::uo) is det.
|
|
|
|
:- implementation.
|
|
|
|
:- import_module int.
|
|
:- import_module float.
|
|
:- import_module list.
|
|
|
|
main(!IO) :-
|
|
IntIn = [1, 2, 3, 4, 5],
|
|
FloatIn = [1.0, 2.0, 3.0, 4.0, 5.0],
|
|
IntListIn = [[1, 2], [3, 4, 5]],
|
|
StringListIn = [["one", "two"], ["three", "four", "five"]],
|
|
|
|
domap(float_add2(3.0), FloatIn, FloatAdd2Out),
|
|
domap(float_op3(4.0, 5.0), FloatIn, FloatOp3Out),
|
|
domap(int.max(3), IntIn, IntMaxOut),
|
|
domap(do_append([6]), IntListIn, IntAppendOut),
|
|
domap(do_append(["a"]), StringListIn, StringAppendOut),
|
|
|
|
io.write_line(FloatAdd2Out, !IO),
|
|
io.write_line(FloatOp3Out, !IO),
|
|
io.write_line(IntMaxOut, !IO),
|
|
io.write_line(IntAppendOut, !IO),
|
|
io.write_line(StringAppendOut, !IO).
|
|
|
|
:- pred domap(pred(X, Y), list(X), list(Y)).
|
|
:- mode domap(pred(in, out) is det, in, out) is det.
|
|
|
|
domap(_, [], []).
|
|
domap(P, [H0 | T0], [H | T]) :-
|
|
P(H0, H),
|
|
domap(P, T0, T).
|
|
|
|
:- pred float_add2(float::in, float::in, float::out) is det.
|
|
|
|
float_add2(A, B, A + B).
|
|
|
|
:- pred float_op3(float::in, float::in, float::in, float::out) is det.
|
|
|
|
float_op3(A, B, C, A + B * C).
|
|
|
|
:- pred do_append(list(T)::in, list(T)::in, list(T)::out) is det.
|
|
|
|
do_append(A, B, C) :-
|
|
list.append(A, B, C).
|