turn the function for creating new types (or type constructors) into a DOPE function

This commit is contained in:
Joeri Exelmans 2025-03-31 17:35:30 +02:00
parent d8ca2f3999
commit a0e3aa0cb3
12 changed files with 112 additions and 58 deletions

View file

@ -5,6 +5,7 @@ import { ModuleByte } from "./primitives/byte.js";
import { ModuleChar } from "./primitives/char.js";
import { ModuleDouble } from "./primitives/double.js";
import { ModuleInt } from "./primitives/int.js";
import { ModuleSymbols } from "./primitives/types.js";
import { ModuleUnit } from "./primitives/unit.js";
import { ModuleFunction } from "./structures/function.js";
import { ModuleList } from "./structures/list.js";
@ -18,6 +19,7 @@ export const ModuleStd = {l:[
...ModuleTyped.l,
...ModuleTypeConstructor.l,
...ModuleSymbols.l,
// Primitive types
...ModuleBool.l,