March 2018
Beginner
616 pages
16h 53m
English
After reading lesson 38, you’ll be able to
Most of what makes Haskell so powerful is based on the language being safe, predictable, and reliable. Although Haskell reduces or eliminates many problems, errors are an unavoidable part of real-world programming. In this lesson, you’ll learn how to think about handling errors in Haskell. The traditional approach of throwing an exception is frowned upon in Haskell, as this makes it easy to have runtime errors the compiler can’t catch. Although Haskell does allow you to ...