This book provides a tutorial to get started using Haskell and contains many small and a few large Haskell projects that will teach you new techniques of Haskell development as well as providing useful code for reuse in your own projects. This book is intended to be a self contained learning resource for a practical subset the Haskell.
Functional programming is the paradigm that is replacing object oriented methodologies. The Haskell language has several advantages for functional programming: the language is mature, is supported by many libraries and development tools, and compiles to compact and efficient executable programs that can be "single file" deployed.
Haskell does have a steep learning curve in general but in this book I show you a small but effective subset of Haskell that will get you started quickly.
The first section of this book contains two chapters:
- A tutorial on pure Haskell development: no side effects. - A tutorial on impure Haskell development: dealing with the world (I/O, network access, database access, etc.)
After working through these tutorial chapters you will understand enough of Haskell development to understand and be able to modify for your own use the cookbook examples in the second section. Some of the general topics will be covered again in the second book section that contains longer sample applications. For example, you will learn the basics for interacting with Sqlite and Postgres databases in the tutorial on impure Haskell code but you will see a much longer example later in the book when I provide code for a Blackjack playing program.
The second section of this book contains the following recipes implemented as complete programs:
- Textprocessing CSV Files - Textprocessing JSON Files - Natural Language Processing (NLP) tools - Client and Server network programming examples - Access data on the Web using scraping and by querying Semantic Web RDF Data Sources - Annotating English text with Wikipedia/DBPedia URIs for entities in the original text. Entities can be people, places, organizations, etc. - Using sqlite and Postgres databases. - Play a simple form of the Blackjack card game.