diff options
Diffstat (limited to 'stdlib/stdLabels.ml')
-rw-r--r-- | stdlib/stdLabels.ml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/stdlib/stdLabels.ml b/stdlib/stdLabels.ml new file mode 100644 index 000000000..b79792e9d --- /dev/null +++ b/stdlib/stdLabels.ml @@ -0,0 +1,21 @@ +(***********************************************************************) +(* *) +(* Objective Caml *) +(* *) +(* Jacques Garrigue, Kyoto University RIMS *) +(* *) +(* Copyright 2001 Institut National de Recherche en Informatique et *) +(* en Automatique. All rights reserved. This file is distributed *) +(* under the terms of the GNU Library General Public License. *) +(* *) +(***********************************************************************) + +(* $Id$ *) + +(* Module [StdLabels]: meta-module for labelled libraries *) + +module Array = ArrayLabels + +module List = ListLabels + +module String = StringLabels |