Back to notes -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'  Slide program -- Keyboard shortcut: 't'    A principled implementation of delay and force in Scheme.Lecture 4 - slide 21 : 27
Program 1
(delay expr) ~ (lambda() expr)

(define (force promise) (promise))