Re: Help


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

Re: Help



IF/THEN/END, IF/THEN/ELSE/END, FOR/END, REPEAT (or whatever that is.. don't
use it much.)/END is a loop... everything with an END is a loop. an IF
<condition>:<Statement> is *NOT* a loop, and that's how you conditional
jump. not with IF/THEN/END.
--
-R.Zwitserloot@BTInternet.com

Nadler <sn11162@WWW.CEDARNET.ORG> wrote in article
<339478C2.4892D5B8@www.cedarnet.org>...
> I know that exiting a loop with the goto command takes up mem, but does
> it also take up mem when it is used like this:
>
> If X=1
> Then
> Goto X
> End
> (misc code)
> Lbl X
>
> It is not a loop but GOTO is still being used before END.
> From Things that I have done it seems like this takes up some mem but
> not as much as exiting a loop.
>
> Paul
>


References: