garnet/haskell/Main.hs

9 lines
188 B
Haskell
Raw Normal View History

2026-02-17 14:57:34 +00:00
module Main (main) where
import Foreign.C.String (CString, withCString)
foreign import ccall safe "__c_hello" hello :: CString -> IO ()
2026-02-17 14:57:34 +00:00
main :: IO ()
main = withCString "Haskell" hello