Back to slide -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'          free-names-1.scm - A function g with four free names a, b, c, and d.Lecture 1 - slide 44 : 49
Program 1

(letrec ((g (lambda ()
                (+ a b c d)))
         (f (lambda (a b c d)
                (g))))
    (f 1 2 3 4))  

; With static binding: Error: reference to undefined identifier: a
; With dynamic binding: 10