haskellのインストール
haskellを使ってみたくなったのでインストールしてみる。
インストールは非常に簡単。
$sudo apt-get install ghc
$ghc
ghc: no input files
Usage: For basic information, try the `--help' option.
$ghci
GHCi, version 7.4.1: http://www.haskell.org/ghc/ :? for help
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
Prelude> Ctrl+z
簡単なプログラム
なんとなくファイルの内容をそのまま出力するプログラムを書いてみる。
main = do
cs <- readFile "input"
putStr cs
これを動かしてみる。
$vim input
1 100
2 1300
3 560
$ghc hello.hs
$ls
hello hello.hi hello.hs hello.o input
$./hello
1 100
2 1300
3 560
動いた!
研究用のプログラムはHaskellで書いてみようかな。