Concept Flow - Closures and variable binding with use
Define outer function
Create closure with 'use'
Closure captures variables by value
Call closure
Closure uses captured variables
Return or output result
This flow shows how a closure captures variables from its surrounding scope using 'use', then uses them when called.