(broken) use lowercase names for symbols

This commit is contained in:
Joeri Exelmans 2025-05-10 09:19:40 +02:00
parent 639d70afa5
commit 1780920438
5 changed files with 55 additions and 57 deletions

View file

@ -5,7 +5,7 @@ import { match, newLeft, newRight } from "./sum.js";
const mkType = getDefaultTypeParser();
export const ModuleSum = [
["newLeft" , newDynamic(newLeft )(mkType("a -> (a + b)" ))],
["newRight" , newDynamic(newRight )(mkType("b -> (a + b)" ))],
["match" , newDynamic(match )(mkType("(a + b) -> (a -> c) -> (b -> c) -> c"))],
["newLeft" , newDynamic(newLeft )(mkType("a -> (a + b)" ))],
["newRight", newDynamic(newRight)(mkType("b -> (a + b)" ))],
["match" , newDynamic(match )(mkType("(a + b) -> (a -> c) -> (b -> c) -> c"))],
];