blob: 4e20f177bf69312311977ebe56c2a46877617174 (
plain)
1
2
3
4
5
6
7
8
9
10
|
module Main where
import SafeLang09_A -- trusted lib
import SafeLang09_B -- untrusted plugin
main = do
let r = res [(1::Int)]
putStrLn $ "Result: " ++ show r
putStrLn $ "Result: " ++ show function
|