Concept Flow - Lambda with captures (closures)
Define variable x
Create lambda capturing x
Store lambda in a delegate
Change x or call lambda
Lambda uses captured x value
Output result
This flow shows how a lambda captures a variable from its surrounding scope and uses it later when called.