mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-21 20:33:55 +00:00
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.
30 lines
664 B
Mathematica
30 lines
664 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module term_to_univ_test.
|
|
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is det.
|
|
|
|
:- implementation.
|
|
|
|
:- import_module term.
|
|
:- import_module term_conversion.
|
|
:- import_module term_io.
|
|
:- import_module univ.
|
|
:- import_module varset.
|
|
|
|
main(!IO) :-
|
|
X = 4,
|
|
type_to_univ(X, Univ0),
|
|
type_to_univ(Univ0, Univ),
|
|
univ_to_term(Univ, Term),
|
|
io.write_line(Term, !IO),
|
|
varset.init(VarSet),
|
|
write_term(VarSet, Term, !IO),
|
|
io.nl(!IO).
|