Re: TIB: Programming Methods...


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

Re: TIB: Programming Methods...





-----Original Message-----
From: Jody <jody1@alaska.net>
To: ti-basic@lists.ticalc.org <ti-basic@lists.ticalc.org>
Date: Thursday, February 05, 1998 1:20 AM
Subject: Re: TIB: Programming Methods...


For example, don't do this:
>:0->X
>:While X<10
>:X+1->X
>:If X>A
>:Goto 1
>:End
>:Lbl 1


You could always do this:
:0->X
:While X<10
:X+1->X
:If X>A
:Goto 1
:End
:Goto 2
:Lbl 1
:End
:Lbl 2

This works in for's and If then's as well

"Why me...?  My computer just had to crash in the middle of 
printing my 50 page research paper!!!  Why me...?"
     --ME

you can e-mail me back at mobets@flash.net



Follow-Ups: