1 /**
2 This module is for convenient use by the scripting language internals. Host applications should
3 only import func.d, object.d, and any.d most of the time.
4 
5 ────────────────────────────────────────────────────────────────────────────────
6 
7 Copyright (C) 2021 pillager86.rf.gd
8 
9 This program is free software: you can redistribute it and/or modify it under 
10 the terms of the GNU General Public License as published by the Free Software 
11 Foundation, either version 3 of the License, or (at your option) any later 
12 version.
13 
14 This program is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
16 PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 
18 You should have received a copy of the GNU General Public License along with 
19 this program.  If not, see <https://www.gnu.org/licenses/>.
20 */
21 module mildew.types;
22 
23 public import mildew.types.any;
24 public import mildew.types.array;
25 public import mildew.types.bindings;
26 public import mildew.types.func;
27 public import mildew.types.object;
28 public import mildew.types..string;