mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-18 02:43:40 +00:00
13 lines
331 B
Mathematica
13 lines
331 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module module_a.
|
|
:- interface.
|
|
|
|
:- use_module io.
|
|
:- import_module module_e.
|
|
:- use_module module_b.
|
|
|
|
:- type module_a.foo == module_b.foo.
|