July 2023
Intermediate to advanced
670 pages
17h 13m
English
So far, all the programs that you’ve built have been small applications that fit in a single source file. To run these programs you’ve compiled your source file with ghc, or ran them directly from ghci. As you start to do more with Haskell, your programs will grow, and you’ll want to have applications that are organized across several files. You’ll also want to start bringing in external dependencies beyond what’s available in the standard library.
There are several popular Haskell build tools that will help you organize projects and manage dependencies. In this chapter, you’ll learn about how Haskell projects are organized, and how to build applications and manage external dependencies. We’ll ...
Read now
Unlock full access