[READ-ONLY] Mirror of https://github.com/shuuji3/normal-haskell-programming-book. Codes for『ふつうのHaskellプログラミング』http://www.loveruby.net/ja/stdhaskell/
0

Configure Feed

Select the types of activity you want to include in your feed.

236 B 12 lines
1tabStop = 8 2 3main :: IO () 4main = do cs <- getContents 5 putStr $ expand cs 6 7expand :: String -> String 8expand cs = concatMap expandTab cs 9 10expandTab :: Char -> String 11expandTab '\t' = replicate tabStop ' ' 12expandTab c = [c]