blob: 5c88d3916d484445e350fce1b2d2640ce5eaf23d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{-# LANGUAGE Trustworthy #-}
module Main where
import safe SafeLang10_A -- trusted lib
import safe SafeLang10_B -- untrusted plugin
main = do
let r = res [(1::Int)]
putStrLn $ "Result: " ++ show r
putStrLn $ "Result: " ++ show function
|