haskell

filter

hugsでfilterを試してみる。 参考にしたページ http://www.zvon.org/other/haskell/Outputprelude/filter_f.html % hugs __ __ __ __ ____ ___ _________________________________________ || || || || || || ||__ Hugs 98: Based on the Haskell 98 standar…

sort

続いて hugsでsortを試す。 参考にしたページ http://www.zvon.org/other/haskell/Outputlist/sort_f.html Hugs> :load List List> sort[1,2,1,3,2,4,5] [1,1,2,2,3,4,5] List> sort["abc", "abb", "aab", "aac", "aaa", "baa", "bab"] ["aaa","aab","aac","…

Haskellをはじめよう

GHC 6.8.2 download — The Glasgow Haskell Compilerからダウンロード。 解凍して % ./configure % sudo make installcat.hsを試す % cat cat.hs main = do cs <- getContents putStr cs % ghc cat.hs -o cat cat.hs:1:10: The last statement in a 'do' con…