ref: b047dd65e0c62c2c6a8b019715aa5cff6fa39f7f
dir: /tests/Foreign.hs/
module Foreign(main) where import Prelude foreign import ccall "llabs" abs :: Int -> IO Int main :: IO () main = do x1 <- abs (3 - 8) putStrLn $ show x1 x2 <- abs (10 - 8) putStrLn $ show x2