@cwebber @civodul ooh yeah that would be cool. appimages are kind of like this in the sense that they are one executable, though they contain a disk image inside. love2d stuffs everything into a zip and uses another icculus project https://icculus.org/physfs/ to pretend it's a file system. because lua is so minimal and doesn't provide a file system access api, love2d games are quite secure in that they can't really access much. they can also write to a save file that love2d controls. gives off some least privilege vibes. would be cool if my games could use guile sandboxing to enforce the same limitations.