Lecture overview -- Keyboard shortcut: 'u'  Previous page: Arbitrary evaluation order - with some limits -- Keyboard shortcut: 'p'  Next page: Infinite evaluations and error evaluations - clarification -- Keyboard shortcut: 'n'  Lecture notes - all slides together  Annotated slide -- Keyboard shortcut: 't'  Alphabetic index  Help page about these notes  Course home    Evaluation Order and Infinite Lists - slide 6 : 27

Infinite evaluations and error evaluations
What is the value of the following expressions?
((lambda (x) 1) some-infinite-calculation)

((lambda (x) 1) (/ 5 0))
evaluation-problems-details.scm
A more concrete version of the infinite calculation from above.