6 lines
96 B
Haskell
6 lines
96 B
Haskell
module Main (main) where
|
|
|
|
main :: IO ()
|
|
main = do
|
|
text <- getContents
|
|
return ()
|