Lambda calculus-like library written in TypeScript.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
jlc/src/bool.show.ts

7 lines
207 B

import { m, g, l } from './core';
import { iif } from './bool';
import { fromString as _s } from './string';
m('bool.show');
export const show = g('show', l('b', iif._('b')._(_s('True'))._(_s('False'))));