34 environments, 24 compilers and 9 interpreters: the story of Eve, how it grew from Light Table, how they researched, built prototypes, and pitched the reinvention of programming to investors.
Part 1: https://youtu.be/WT2CMS0MxJ0
Part 2:
https://youtu.be/ThjFFDwOXok
miniblog.
Related Posts
TIL Tcl has a notion of 'safe interpreters', a mode where you can run untrusted code in a sandbox: https://www.tcl.tk/man/tcl8.4/TclCmd/safe.htm
Not many programming languages have this, but it's way safer to include in the implementation than try to build as a userland library.
Implementing interactive languages, and the tradeoffs of interpreters, JIT compilers, and AOT compilers:
On storing ASTs in flat arrays for performance, and the relationship with bytecode interpreters: