Haskell version sandbox

Is there an isolated version of Haskell that prevents the execution of dangerous code? I came across mueval and Safe Haskell ... mueval only accepts expressions, and Safe Haskell is not implemented yet. Is there any other alternative for the Haskell scripting sandbox? It seems that preventing I / O should be enough. Is there an easy way to prevent all IOs in a Haskell script?

+5
source share
1 answer

Safe Haskell is the latest incarnation of the trusted kernel for Haskell and is available on the Haskell platform.

It exists to facilitate the execution of untrusted code.

+6
source

All Articles