Safely running untrusted Haskell code

From HaskellWiki
Revision as of 16:25, 26 May 2007 by Isaac Dupree (talk | contribs) (initial low-effort introduction)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Obviously, don't run code in the IO monad, just show pure results (or possibly make your own monad that is a restricted subset of IO). But it's a lot more complicated than that...