The Repl doesn't remember definitions: ``` Repl> (define myid (lambda (x) x)) myid Repl> (myid 1) Error Unbound Variable: myid ``` This works: ``` Repl> (begin (define myid (lambda (x) x)) (myid 1)) 1 ```