what's the syntax (if any) for using an outer vari...
# announcements
a
what's the syntax (if any) for using an outer variable from a nested when? e.g.
Copy code
with(A) {
    with(B) {
        doSomething(A)
    }
}