#756
best refactorer
jarkko
2 code submissions,
No refactoring,
1
2
3
4
main = do s <- getContents
putStr (unlines (reverse (rotate (lines s))))
...
by
jarkko,
November 11, 2008 22:53,
1 refactoring, tagged with
haskell
1
2
3
4
module Main where
import List
import Text.Regex.Posix
...
Rotates text given in stdin...