[TIB] Re: data type issue


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

[TIB] Re: data type issue



> ClLCD
> " "->ALL
> Input "# of dice? ",D
> ClLCD
> For(R,1,D)
> randInt(1,6)->ROLL
> ALL+" "+ROLL->ALL
> End
> Disp ALL

For this part above, try the code:

ClLCD
0->ALL
Input "# of dice? ",D
ClLCD
For(R,1,D)
randInt(1,6)->ROLL
ALL+ROLL->ALL
End
Disp ALL

Follow-Ups: