2010年7月1日木曜日

haskellでhallo world

[したいこと・しりたいこと・目標]

haskellでhallo world

[環境]

Ubuntu Lucid Lynx 10.04 on VMWare Fusion 3



[したこと]


(01)
インストールする
$ sudo aptitude install ghc6

(02)
ソースを書く
main = putStrLn "Hello, World!"


(03)
実行する
$ ghc helloworld.hs
$ ./a.out

$ ghc -o helloworld helloworld.hs
$ ./helloworld

[参考]

Haskell Hello World Example: How To Write, Compile and Execute Haskell Program on Linux OS
http://www.thegeekstuff.com/2010/03/haskell-programming-hello-world/

0 コメント: