summaryrefslogtreecommitdiff
path: root/testsuite/tests/ffi/should_run/5594.hs
blob: 1ec2b87d9c1dcfb256af15f199b0e35d817b1b36 (plain)
1
2
3
4
5
6
module Lib (hello) where

foreign export ccall "hello" hello :: IO ()

hello :: IO ()
hello = putStrLn "Hello!"