Files
mercury/library/unit.m
Zoltan Somogyi a12692a0de Replace /* */ comments with // in the library.
Keep the old style comments where they do not go to the end of the line,
or where it is important that the comment line not have a // on it.
2018-06-21 18:55:08 +02:00

30 lines
1.0 KiB
Mathematica

%---------------------------------------------------------------------------%
% vim: ft=mercury ts=4 sw=4 et
%---------------------------------------------------------------------------%
% Copyright (C) 1994-2006 The University of Melbourne.
% Copyright (C) 2014-2015, 2018 The Mercury team.
% This file is distributed under the terms specified in COPYING.LIB.
%---------------------------------------------------------------------------%
%
% File: unit.m.
% Main author: fjh.
% Stability: high.
%
% The "unit" type - stores no information at all.
%
%---------------------------------------------------------------------------%
%---------------------------------------------------------------------------%
:- module unit.
:- interface.
%---------------------------------------------------------------------------%
:- type unit ---> unit.
:- type unit(T) ---> unit1.
%---------------------------------------------------------------------------%
:- end_module unit.
%---------------------------------------------------------------------------%