Does anyone know of a good (probably scripting) language that is designed to be, or is at least amenable to being, "containerized" into something like an SQLite database?
My plan for fun projects in 2025 is to get back into using SQLite more;
I blogged about it, so now I'm accountable.

Since everything's going to revolve around the DB, my mind got to wondering if I couldn't just bootstrap the code up without accessing the filesystem. In theory, it shouldn't be all that difficult to do for any language that exposes a
require/include
interface that essentially does an
eval
on the data blob it gets.
I'm reminded very much of when I used a
Smalltalk IDE way back in the 90's. I don't recall ever having to poke around in the filesystem to deal with the code itself. I'm sure I can sandbox a
Lua environment that
ends up looking like that. Is there anything cool out there that
starts like that?