Advertisement
Mysoft

Untitled

Nov 15th, 2016
569
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. do
  2.   for N = 0 to 9
  3.     if (N mod 2)=0 then
  4.       dim as integer ThisVar
  5.       'ThisVar exists here...
  6.       if N < 5 then
  7.         'ThisVar DO exist here too..
  8.       end if
  9.     else
  10.       'ThisVar isnt accessible here
  11.     end if
  12.     'Thisvar isnt accessible here either
  13.   next N
  14.   'thisvar obviously wont be accessible here as well
  15. loop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement