Re: HELLO


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

Re: HELLO



>Try this little program:
>
>rand->A
>If A>.5
>Then
>Disp "He loves me"
>Else
>Disp "He loves me not"
>End
>
Actually, to save space and prevent cluttering memory with unnecessary
variables this program would be smarter:

ClLCD
Disp "He loves me"
If rand<.5:Outpt(1,13,"not"

See, by using the brain it's easy to save bytes. In this case you save
15/65=23.1% of program code and in addition you need not the
variable-misery.

Kind regards
Kasper Vibe Grevsen, Denmark


References: