7 lines
112 B
Haskell
7 lines
112 B
Haskell
module Main (main) where
|
|
|
|
import Control.Applicative (pure)
|
|
import System.IO (IO)
|
|
|
|
main :: IO ()
|
|
main = pure ()
|