Playlist | schedule page slides as PDF |
Type 1 — expressions and values (7:18)
Expressions vs. “well-formed” expressions. You can skip this video if it seems too tedious, but it’s trying to get at what a type system is really about.
Type 2 — types (2:56)
Types as an approach to well-formedness.
Type 3 — type rules (2:50)
Type rules in the traditional, math-ish notation.
Type 4 — conditionals (2:51)
Type rules for conditionals.
Type 5 — functions (5:06)
Type rules for functions.
Type 6 — function calls (2:25)
Type rules for function calls.
Type 7 — multi-argument function calls (1:53)
An aside on type rules for multi-argument functions and funicton calls, as set-up for the homework assignment.
Type 8 — typecheck (6:47)
Implementing typecheck. See typed-lambda.rkt.
Type 9 — typecheck vs. interp (0:59)
A reminder that typecheck and interp do not call each other.
Type 10 — pairs (3:29)
Type rules for pairs, as set-up for the homework assignment.