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