mirror of
https://github.com/qfpl/applied-fp-course.git
synced 2024-11-22 11:23:01 +03:00
10 lines
252 B
Haskell
10 lines
252 B
Haskell
|
module Main where
|
||
|
|
||
|
import qualified Level02.Core as Core
|
||
|
|
||
|
-- Our application will be built as a library that will be included in an
|
||
|
-- executable. So our ``exe/Main.hs`` is a straightforward and unremarkable
|
||
|
-- affair.
|
||
|
main :: IO ()
|
||
|
main = Core.runApp
|