UNPKG

lambda-calculus-with-js

Version:

Using JS' anonymous functions to perform lambda calculus

4 lines (3 loc) 99 B
export const I = n => n; export const K = x => _ => x; export const S = x => y => z => x(z)(y(z));