1. 설치
1) 우분투
apt-get install haskell-platform
2) redhat 계열
yum install haskell-platform
2. haskell 사용
1) compile : ghc
ghc test.hs
./test (프로그램 실행)
================== test.hs ===============
main = do
print "Hello haskell!"
2) interative : ghci
ghci
> :l test.hs (test.hs 프로그램 load)
> main (실행)
> :q (종료)