Lecture overview -- Keyboard shortcut: 'u'  Previous page: Binding of free names - examples -- Keyboard shortcut: 'p'  Next page: Referential Transparency [Section] -- Keyboard shortcut: 'n'  Lecture notes - all slides together  Annotated slide -- Keyboard shortcut: 't'  Alphabetic index  Help page about these notes  Course home    Introduction to Functional Programming in Scheme - slide 45 : 49

The fluid-let namebinding construct

Some Scheme systems support fluid-let, which in its body temporarily reassigns values to the names

This may be used as an alternative to rebinding with use of dynamic binding.

fluid-let-1.scm
Illustration of the use of fluid-let for temporary reassignment of relatively global variables.