mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 09:23:44 +00:00
24 lines
892 B
Mathematica
24 lines
892 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
% Copyright (C) 2002 The University of Melbourne.
|
|
% Copyright (C) 2014, 2018, 2022, 2025 The Mercury team.
|
|
% This file is distributed under the terms specified in COPYING.LIB.
|
|
%---------------------------------------------------------------------------%
|
|
% File: mer_std.m
|
|
% Main author: stayl
|
|
%
|
|
% This file is only present so that the library is generated
|
|
% with our chosen name.
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module mer_std.
|
|
|
|
:- implementation.
|
|
|
|
:- import_module library.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
:- end_module mer_std.
|
|
%---------------------------------------------------------------------------%
|