Pinned Loading
-
sicp.js
sicp.js 1const log = (...args) => console.log.apply(null, args)
2const cons = (x, y) => f => f(x,y)
3const car = x => x((a, _) => a)
4const cdr = x => x((_, b) => b)
5const add = (list, el) => cons(el, list)
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.