Where you can see only the variables within scope. Where all the variables you can see are in scope.

 Define Variable This.Var
 Set This.Var to 100
 If This.Var 
     Define Variable That.Var
     Set That.Var to 2
 Print This.Var
 Print That.Var

Produces

 100
 2

 -- PeterLynch