So I'm looking to produce a publicly available Julia REPL that runs on a
server. Obviously, this is something that needs to be sandboxed and doesn't
expose any direct control over the OS environment. It seems like the way to
do this would be to override or wrap any functions in stdlib that provide
access to the filesystem, running processes, etc. Of course, this could
potentially be tedious and error prone. Is there an easier way to do this?
As far as I know julia doesn't have a "safe mode" or something similar.