Files
mercury/tests/hard_coded/dense_lookup_switch.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

31 lines
660 B
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
:- module dense_lookup_switch.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.
:- type foo ---> a ; b ; c ; d ; e ; f ; g ; h.
main(!IO) :-
bar(e, !IO).
:- pragma no_inline(bar/3).
:- pred bar(foo::in, io::di, io::uo) is det.
bar(X, !IO) :-
( if
( X = a ; X = b ; X = c ; X = d )
then
io.write_string("a or b or c or d\n", !IO)
else
io.write_string("something else\n", !IO)
).