▲ | tikotus 3 days ago | |||||||
I've implemented my lisp/scheme based on Three Implementation Models for Scheme and also Lisp in Small Pieces. Both make a CPS transformation, which, after finally wrapping my head around it, is great for many things. For example it makes implementing async/await very easy (without implementing call/cc which I find too powerful). I use them a lot since I use the language for scripting games, where asynchronous structures really shine. | ||||||||
▲ | matheusmoreira 3 days ago | parent [-] | |||||||
I wrote my lisp as a modified explicit control evaluator from SICP because I wanted to avoid transforming the code at all. > Three Implementation Models for Scheme This was a good read, thank you for the reference. > call/cc which I find too powerful Why do you think that? Do you have the same opinion about delimited continuations? | ||||||||
|