Haskell Notes
Notes and resources for the Fall 2, 2020 batch at the Recurse Center
Resources
CIS 194 (Brent Yorgey, U Penn)
Homework 11, baby Lisp eval. Very limited, but it can do this:
> eval "(product 2 (sum 3 4))" Just (Num 14)
and do limited error reporting:
> eval "(product 2 (sum 3 4)" Just BadSExpr