12 lines
208 B
Haskell
12 lines
208 B
Haskell
|
|
module Main where
|
||
|
|
|
||
|
|
import MiniDeriving.Batch
|
||
|
|
( mergeBatches
|
||
|
|
, platformBatch
|
||
|
|
, renderBatch
|
||
|
|
, urgentFixBatch
|
||
|
|
)
|
||
|
|
|
||
|
|
main :: IO ()
|
||
|
|
main = putStrLn (renderBatch (mergeBatches platformBatch urgentFixBatch))
|