Files
mercury/tests/hard_coded/uniq_duplicate_call.m
Julien Fischer 1f6d83692a Update programming style in tests/hard_coded.
tests/hard_coded/*.m:
    Update programming style, unless doing so would change
    the meaning of the test, in particular:

    - use '.' as a module qualifier in place of '__'
    - use {write,print}_line where appropriate
    - use if-then-else in place of C -> T ; E
    - use state variables in place of DCGs

tests/hard_coded/dir_test.m:
    Document what the expected outputs correspond to.

    Use a uniform module qualifier in the output.

tests/hard_coded/dir_test.exp*:
    Conform to the above change.
2021-01-07 13:58:12 +11:00

28 lines
666 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
:- module uniq_duplicate_call.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
:- import_module array.
main(!IO) :-
dup_call(1, 2, Array1, Array2),
io.write_int(array.lookup(Array1, 0), !IO),
io.nl(!IO),
io.write_int(array.lookup(Array2, 0), !IO),
io.nl(!IO).
:- pred dup_call(T::in, T::in, array(T)::out, array(T)::out) is det.
dup_call(T, T2,
array.set(array.init(1, T), 0, T2),
array.init(1, T)).