Re: Help


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

Re: Help



Nadler wrote:
>
> Jeff Tyrrill wrote:
> >
> > Just replace that with
> >
> > If X=1
> > Goto X
> > ...more code...
> > Lbl X
> >
> > When an IF statement does not have a THEN statement after it, the statement
> > after the IF statement is considered to be the one statement in the "IF
loop".

> That is not what I wanted to know, I just wanted to know if it takes up
> memory.  What I wrote before was just an example.  Maby this would be a
> better example:
>
> If X=1
> Then
> (code)
> Goto X
> End
> (code)
> Lbl X
>
> Paul

I'm sure the goto would take up more memory than just doing:

:If X=1
:Then
:(code)
:Else
:(code)
:End

--
Doug Torrance
torrance@geocities.com
http://profzoom.home.ml.org
(:  Have a happy day!  :)


References: