[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.

177 B 8 lines
1main :: IO () 2main = do cs <- getContents 3 putStr $ concatMap translate cs 4 5translate :: Char -> String 6translate 'a' = ['A'] 7translate 'A' = ['a'] 8translate c = [c]