A baseline scrapscript compiler
A baseline scrapscript compiler
bernsteinbear.com
A baseline scrapscript compiler
Scrapscript is a small, pure, functional, content-addressable, network-first programming language.
fact 5 . fact = | 0 -> 1 | n -> n * fact (n - 1)My previous post introduced the language a bit and then talked about the interpreter that Chris and I built. This post is about the compiler that Chris and I built.