shithub: MicroHs

ref: 8f72f4d646f9ae66eaeecd18a003f5d316789436
dir: /tests/Foreign.hs/

View raw version
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