Haskell

安裝

pacman -S ghc

開啟交互模式

ghc --interactive 

ghci

簡易打印

putStrLn "newline"
putStr "print"

Haskell