Code formatting

If the code has accepted an ugly species like this:

while 1
b+=1
          wend

     do
  b+=1
loop

AutoIndent will automatically format your code (remove unnecessary spaces and add the necessary indentation):

while 1
    b+=1
wend

do
    b+=1
loop