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

create sort.hs

+5
+5
sort.hs
··· 1 + import Data.List 2 + 3 + main :: IO () 4 + main = do cs <- getContents 5 + putStr $ unlines $ sort $ lines cs