mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-23 13:23:47 +00:00
Estimated hours taken: 0.25 Use sub-modules to package up the modules in extras/complex_numbers into a single module. extras/complex_numbers/complex_numbers.m: I forgot to `cvs add' this file before committing my last change. extras/complex_numbers/samples/fft.m: I forgot to change the `import_module' declaration here to import `complex_numbers:complex' instead of `complex'.
11 lines
520 B
Mathematica
11 lines
520 B
Mathematica
%---------------------------------------------------------------------------%
|
|
% Copyright (C) 1997-1998 The University of Melbourne.
|
|
% This file may only be copied under the terms of the GNU Library General
|
|
% Public License - see the file COPYING.LIB in the Mercury distribution.
|
|
%---------------------------------------------------------------------------%
|
|
:- module complex_numbers.
|
|
:- interface.
|
|
:- include_module complex, imag.
|
|
:- include_module complex_imag, imag_complex.
|
|
:- include_module float_imag, imag_float.
|