Re: TIB: RE: If-then-goto-end loops can create a problem


[Prev][Next][Index][Thread]

Re: TIB: RE: If-then-goto-end loops can create a problem




In a message dated 5/12/99 9:38:12 PM !!!First Boot!!!, NathanG@firstva.com 
writes:

> 
>  If X=2
>  Then
>  Goto 1
>  End
>  Lbl 1
>  End
>  (COMMANDS)...
>  
in this code you dont even need the then b/c there is only 1 command after 
the if statement
If X=2
goto A 
...
...
Lbl A
...
...


Follow-Ups: